/*
* Project: MoleCuilder
* Description: creates and alters molecular systems
* Copyright (C) 2010-2012 University of Bonn. All rights reserved.
*
*
* This file is part of MoleCuilder.
*
* MoleCuilder is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* MoleCuilder is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MoleCuilder. If not, see .
*/
/*
* AdaptivityMap.cpp
*
* Created on: Oct 20, 2011
* Author: heber
*/
#ifdef HAVE_CONFIG_H
#include
#endif
#include "CodePatterns/MemDebug.hpp"
#include "AdaptivityMap.hpp"
#include
#include "CodePatterns/Assert.hpp"
#include "CodePatterns/Log.hpp"
#include "Atom/atom.hpp"
#include "Fragmentation/AtomMask.hpp"
#include "Helpers/defs.hpp"
#include "Helpers/helpers.hpp"
#include "molecule.hpp"
/** Constructor of class AdaptivityMap.
*
*/
AdaptivityMap::AdaptivityMap()
{}
/** Destructor of class AdaptivityMap.
*
*/
AdaptivityMap::~AdaptivityMap()
{}
/** Inserts a (\a No, \a value) pair into the list, overwriting present one.
* Note if values are equal, No will decided on which is first
* \param *out output stream for debugging
* \param &AdaptiveCriteriaList list to insert into
* \param &IndexedKeySetList list to find key set for a given index \a No
* \param FragOrder current bond order of fragment
* \param No index of keyset
* \param value energy value
*/
void AdaptivityMap::InsertIntoAdaptiveCriteriaList(int FragOrder, int No, double Value)
{
ASSERT( AdaptiveCriteriaList != NULL,
"AdaptivityMap::InsertIntoAdaptiveCriteriaList() - AdaptiveCriteriaList is not allocated yet.");
const_iterator marker = find(No); // find keyset to Frag No.
if (marker != end()) { // if found
Value *= 1 + MYEPSILON*(*((*marker).second.begin())); // in case of equal energies this makes them not equal without changing anything actually
// as the smallest number in each set has always been the root (we use global id to keep the doubles away), seek smallest and insert into AtomMask
std::pair