[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[97ebf8] | 8 | /*
|
---|
| 9 | * DepthFirstSearchAction.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: May 9, 2010
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[bf3817] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[ad011c] | 20 | #include "CodePatterns/MemDebug.hpp"
|
---|
[112b09] | 21 |
|
---|
[97ebf8] | 22 | #include "atom.hpp"
|
---|
[632508] | 23 | #include "Graph/BondGraph.hpp"
|
---|
[97ebf8] | 24 | #include "config.hpp"
|
---|
[ad011c] | 25 | #include "CodePatterns/Log.hpp"
|
---|
| 26 | #include "CodePatterns/Verbose.hpp"
|
---|
[e73ad9a] | 27 | #include "Graph/CyclicStructureAnalysis.hpp"
|
---|
[49c059] | 28 | #include "Graph/DepthFirstSearchAnalysis.hpp"
|
---|
[97ebf8] | 29 | #include "molecule.hpp"
|
---|
[d3abb1] | 30 | #include "MoleculeLeafClass.hpp"
|
---|
[97ebf8] | 31 | #include "Descriptors/MoleculeDescriptor.hpp"
|
---|
| 32 | #include "Descriptors/MoleculeIdDescriptor.hpp"
|
---|
| 33 | #include "World.hpp"
|
---|
| 34 |
|
---|
| 35 | #include <iostream>
|
---|
| 36 | #include <string>
|
---|
| 37 |
|
---|
[d09093] | 38 | #include "Actions/GraphAction/DepthFirstSearchAction.hpp"
|
---|
[f394a6] | 39 |
|
---|
[ce7fdc] | 40 | using namespace MoleCuilder;
|
---|
| 41 |
|
---|
[1fd675] | 42 | // and construct the stuff
|
---|
| 43 | #include "DepthFirstSearchAction.def"
|
---|
| 44 | #include "Action_impl_pre.hpp"
|
---|
| 45 | /** =========== define the function ====================== */
|
---|
[d09093] | 46 | Action::state_ptr GraphDepthFirstSearchAction::performCall() {
|
---|
[1fd675] | 47 | // obtain information
|
---|
| 48 | getParametersfromValueStorage();
|
---|
[f394a6] | 49 |
|
---|
| 50 | DoLog(1) && (Log() << Verbose(1) << "Depth-First-Search Analysis." << endl);
|
---|
| 51 | atom **ListOfAtoms = NULL;
|
---|
[a564be] | 52 | std::deque<bond *> *LocalBackEdgeStack = NULL;
|
---|
[49c059] | 53 | DepthFirstSearchAnalysis DFS;
|
---|
| 54 | DFS();
|
---|
| 55 | DFS.UpdateMoleculeStructure();
|
---|
| 56 | MoleculeLeafClass *Subgraphs = DFS.getMoleculeStructure();
|
---|
[f394a6] | 57 | if (Subgraphs != NULL) {
|
---|
| 58 | int FragmentCounter = 0;
|
---|
| 59 | while (Subgraphs->next != NULL) {
|
---|
| 60 | Subgraphs = Subgraphs->next;
|
---|
| 61 | ListOfAtoms = NULL;
|
---|
[49c059] | 62 | Subgraphs->Leaf->FillListOfLocalAtoms(ListOfAtoms, Subgraphs->Leaf->getAtomCount());
|
---|
[a564be] | 63 | LocalBackEdgeStack = new std::deque<bond *>; // no need to have it Subgraphs->Leaf->BondCount size
|
---|
[49c059] | 64 | DFS.PickLocalBackEdges(ListOfAtoms, LocalBackEdgeStack);
|
---|
[e73ad9a] | 65 | CyclicStructureAnalysis CycleAnalysis;
|
---|
| 66 | CycleAnalysis(LocalBackEdgeStack);
|
---|
[f394a6] | 67 | delete(LocalBackEdgeStack);
|
---|
[49c059] | 68 | Subgraphs->Leaf = NULL;
|
---|
[f394a6] | 69 | delete(Subgraphs->previous);
|
---|
[49c059] | 70 | delete[](ListOfAtoms); // allocated by FillListOfLocalAtoms
|
---|
[f394a6] | 71 | FragmentCounter++;
|
---|
[97ebf8] | 72 | }
|
---|
[49c059] | 73 | Subgraphs->Leaf = NULL;
|
---|
[f394a6] | 74 | delete(Subgraphs);
|
---|
[97ebf8] | 75 | }
|
---|
[f394a6] | 76 | return Action::success;
|
---|
[97ebf8] | 77 | }
|
---|
| 78 |
|
---|
[d09093] | 79 | Action::state_ptr GraphDepthFirstSearchAction::performUndo(Action::state_ptr _state) {
|
---|
[f394a6] | 80 | return Action::success;
|
---|
[97ebf8] | 81 | }
|
---|
| 82 |
|
---|
[d09093] | 83 | Action::state_ptr GraphDepthFirstSearchAction::performRedo(Action::state_ptr _state){
|
---|
[f394a6] | 84 | return Action::success;
|
---|
[97ebf8] | 85 | }
|
---|
| 86 |
|
---|
[d09093] | 87 | bool GraphDepthFirstSearchAction::canUndo() {
|
---|
[f394a6] | 88 | return true;
|
---|
[97ebf8] | 89 | }
|
---|
| 90 |
|
---|
[d09093] | 91 | bool GraphDepthFirstSearchAction::shouldUndo() {
|
---|
[f394a6] | 92 | return true;
|
---|
[97ebf8] | 93 | }
|
---|
[1fd675] | 94 | /** =========== end of function ====================== */
|
---|