| 1 | /* | 
|---|
| 2 | * Project: MoleCuilder | 
|---|
| 3 | * Description: creates and alters molecular systems | 
|---|
| 4 | * Copyright (C)  2010-2012 University of Bonn. All rights reserved. | 
|---|
| 5 | * Copyright (C)  2013 Frederik Heber. All rights reserved. | 
|---|
| 6 | * | 
|---|
| 7 | * | 
|---|
| 8 | *   This file is part of MoleCuilder. | 
|---|
| 9 | * | 
|---|
| 10 | *    MoleCuilder is free software: you can redistribute it and/or modify | 
|---|
| 11 | *    it under the terms of the GNU General Public License as published by | 
|---|
| 12 | *    the Free Software Foundation, either version 2 of the License, or | 
|---|
| 13 | *    (at your option) any later version. | 
|---|
| 14 | * | 
|---|
| 15 | *    MoleCuilder is distributed in the hope that it will be useful, | 
|---|
| 16 | *    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
| 17 | *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
| 18 | *    GNU General Public License for more details. | 
|---|
| 19 | * | 
|---|
| 20 | *    You should have received a copy of the GNU General Public License | 
|---|
| 21 | *    along with MoleCuilder.  If not, see <http://www.gnu.org/licenses/>. | 
|---|
| 22 | */ | 
|---|
| 23 |  | 
|---|
| 24 | /* | 
|---|
| 25 | * FragmentationAutomationAction.cpp | 
|---|
| 26 | * | 
|---|
| 27 | *  Created on: May 18, 2012 | 
|---|
| 28 | *      Author: heber | 
|---|
| 29 | */ | 
|---|
| 30 |  | 
|---|
| 31 | // include config.h | 
|---|
| 32 | #ifdef HAVE_CONFIG_H | 
|---|
| 33 | #include <config.h> | 
|---|
| 34 | #endif | 
|---|
| 35 |  | 
|---|
| 36 | #include <boost/archive/text_iarchive.hpp> | 
|---|
| 37 | // boost asio needs specific operator new | 
|---|
| 38 | #include <boost/asio.hpp> | 
|---|
| 39 |  | 
|---|
| 40 | #include "CodePatterns/MemDebug.hpp" | 
|---|
| 41 |  | 
|---|
| 42 | //// include headers that implement a archive in simple text format | 
|---|
| 43 | #include <boost/archive/text_oarchive.hpp> | 
|---|
| 44 | #include <boost/archive/text_iarchive.hpp> | 
|---|
| 45 |  | 
|---|
| 46 | // | 
|---|
| 47 | //#include <boost/mpl/remove.hpp> | 
|---|
| 48 | //#include <boost/lambda/lambda.hpp> | 
|---|
| 49 |  | 
|---|
| 50 | //#include <iostream> | 
|---|
| 51 |  | 
|---|
| 52 | #include "CodePatterns/Assert.hpp" | 
|---|
| 53 | #include "CodePatterns/Info.hpp" | 
|---|
| 54 | #include "CodePatterns/Log.hpp" | 
|---|
| 55 |  | 
|---|
| 56 | #ifdef HAVE_JOBMARKET | 
|---|
| 57 | #include "JobMarket/Jobs/FragmentJob.hpp" | 
|---|
| 58 | #else | 
|---|
| 59 | #include "Jobs/JobMarket/FragmentJob.hpp" | 
|---|
| 60 | #endif | 
|---|
| 61 |  | 
|---|
| 62 | #include "Fragmentation/Automation/FragmentJobQueue.hpp" | 
|---|
| 63 | #ifdef HAVE_JOBMARKET | 
|---|
| 64 | #include "Fragmentation/Automation/MPQCFragmentController.hpp" | 
|---|
| 65 | #else | 
|---|
| 66 | #include "Fragmentation/Automation/MPQCCommandFragmentController.hpp" | 
|---|
| 67 | #endif | 
|---|
| 68 | #include "Fragmentation/Summation/Containers/FragmentationChargeDensity.hpp" | 
|---|
| 69 | #include "Fragmentation/Summation/Containers/FragmentationLongRangeResults.hpp" | 
|---|
| 70 | #include "Fragmentation/Summation/Containers/FragmentationResultContainer.hpp" | 
|---|
| 71 | #include "Fragmentation/Summation/Containers/FragmentationShortRangeResults.hpp" | 
|---|
| 72 | #include "Fragmentation/Summation/Containers/MPQCData.hpp" | 
|---|
| 73 | #include "Fragmentation/KeySetsContainer.hpp" | 
|---|
| 74 | #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) | 
|---|
| 75 | #include "Fragmentation/Automation/VMGDebugGridFragmentController.hpp" | 
|---|
| 76 | #include "Fragmentation/Automation/VMGFragmentController.hpp" | 
|---|
| 77 | #include "Fragmentation/Summation/Containers/VMGData.hpp" | 
|---|
| 78 | #include "Fragmentation/Summation/Containers/VMGDataFused.hpp" | 
|---|
| 79 | #include "Fragmentation/Summation/Containers/VMGDataMap.hpp" | 
|---|
| 80 | #include "Fragmentation/Summation/Containers/VMGData_printKeyNames.hpp" | 
|---|
| 81 | #endif | 
|---|
| 82 | #include "World.hpp" | 
|---|
| 83 |  | 
|---|
| 84 | #include <boost/bind.hpp> | 
|---|
| 85 | #include <boost/thread.hpp> | 
|---|
| 86 | #include <fstream> | 
|---|
| 87 | #include <iostream> | 
|---|
| 88 | #include <string> | 
|---|
| 89 | #include <vector> | 
|---|
| 90 |  | 
|---|
| 91 | #include <boost/mpl/for_each.hpp> | 
|---|
| 92 |  | 
|---|
| 93 | #include "Actions/FragmentationAction/FragmentationAutomationAction.hpp" | 
|---|
| 94 |  | 
|---|
| 95 | using namespace MoleCuilder; | 
|---|
| 96 |  | 
|---|
| 97 | // and construct the stuff | 
|---|
| 98 | #include "FragmentationAutomationAction.def" | 
|---|
| 99 | #include "Action_impl_pre.hpp" | 
|---|
| 100 | /** =========== define the function ====================== */ | 
|---|
| 101 |  | 
|---|
| 102 | class controller_AddOn; | 
|---|
| 103 |  | 
|---|
| 104 | // needs to be defined for using the FragmentController | 
|---|
| 105 | controller_AddOn *getAddOn() | 
|---|
| 106 | { | 
|---|
| 107 | return NULL; | 
|---|
| 108 | } | 
|---|
| 109 |  | 
|---|
| 110 | static void updateSteps(Process &p, const size_t step, const size_t total) | 
|---|
| 111 | { | 
|---|
| 112 | LOG(1, "There are " << step << " steps out of " << total << " done."); | 
|---|
| 113 | p.setCurrStep(step); | 
|---|
| 114 | } | 
|---|
| 115 |  | 
|---|
| 116 | ActionState::ptr FragmentationFragmentationAutomationAction::performCall() { | 
|---|
| 117 | boost::asio::io_service io_service; | 
|---|
| 118 |  | 
|---|
| 119 | // TODO: Have io_service run in second thread and merge with current again eventually | 
|---|
| 120 |  | 
|---|
| 121 | FragmentationResultContainer &container = | 
|---|
| 122 | FragmentationResultContainer::getInstance(); | 
|---|
| 123 | const KeySetsContainer& keysets = FragmentJobQueue::getInstance().getKeySets(); | 
|---|
| 124 | const KeySetsContainer& forcekeysets = FragmentJobQueue::getInstance().getFullKeySets(); | 
|---|
| 125 |  | 
|---|
| 126 | size_t Exitflag = 0; | 
|---|
| 127 | std::map<JobId_t, MPQCData> shortrangedata; | 
|---|
| 128 | #ifdef HAVE_JOBMARKET | 
|---|
| 129 | { | 
|---|
| 130 | const size_t NumberJobs = FragmentJobQueue::getInstance().size(); | 
|---|
| 131 | MPQCFragmentController mpqccontroller(io_service); | 
|---|
| 132 | mpqccontroller.setHost(params.host.get()); | 
|---|
| 133 | mpqccontroller.setPort(params.port.get()); | 
|---|
| 134 | // Phase One: obtain ids | 
|---|
| 135 | mpqccontroller.requestIds(NumberJobs); | 
|---|
| 136 | if (mpqccontroller.getExitflag() != 0) | 
|---|
| 137 | return Action::failure; | 
|---|
| 138 |  | 
|---|
| 139 | // Phase Two: add MPQCJobs and send | 
|---|
| 140 | const bool AddJobsStatus = mpqccontroller.addJobsFromQueue( | 
|---|
| 141 | params.DoLongrange.get() ? MPQCData::DoSampleDensity : MPQCData::DontSampleDensity, | 
|---|
| 142 | params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly | 
|---|
| 143 | ); | 
|---|
| 144 | if (AddJobsStatus) | 
|---|
| 145 | LOG(1, "INFO: Added jobs from FragmentJobsQueue."); | 
|---|
| 146 | else { | 
|---|
| 147 | ELOG(1, "Adding jobs failed."); | 
|---|
| 148 | return Action::failure; | 
|---|
| 149 | } | 
|---|
| 150 | mpqccontroller.run(); | 
|---|
| 151 |  | 
|---|
| 152 | // Phase Three: calculate result | 
|---|
| 153 | setMaxSteps(NumberJobs); | 
|---|
| 154 | mpqccontroller.setUpdateHandler( | 
|---|
| 155 | boost::bind(&updateSteps, boost::ref(*this), _1, _2) | 
|---|
| 156 | ); | 
|---|
| 157 | start(); | 
|---|
| 158 | boost::thread wait_thread( | 
|---|
| 159 | boost::bind(&MPQCFragmentController::waitforResults, boost::ref(mpqccontroller), boost::cref(NumberJobs)) | 
|---|
| 160 | ); | 
|---|
| 161 | wait_thread.join(); | 
|---|
| 162 | stop(); | 
|---|
| 163 | if (mpqccontroller.getExitflag() != 0) | 
|---|
| 164 | return Action::failure; | 
|---|
| 165 |  | 
|---|
| 166 | mpqccontroller.getResults(shortrangedata); | 
|---|
| 167 | if (mpqccontroller.getExitflag() != 0) | 
|---|
| 168 | return Action::failure; | 
|---|
| 169 |  | 
|---|
| 170 | Exitflag += mpqccontroller.getExitflag(); | 
|---|
| 171 | } | 
|---|
| 172 | #else | 
|---|
| 173 | { | 
|---|
| 174 | const size_t NumberJobs = FragmentJobQueue::getInstance().size(); | 
|---|
| 175 | MPQCCommandFragmentController mpqccontroller; | 
|---|
| 176 | // Phase One: obtain ids: not needed, we have infinite pool | 
|---|
| 177 |  | 
|---|
| 178 | // Phase Two: add MPQCJobs and send | 
|---|
| 179 | const size_t NoJobs = mpqccontroller.addJobsFromQueue( | 
|---|
| 180 | params.DoLongrange.get() ? MPQCData::DoSampleDensity : MPQCData::DontSampleDensity, | 
|---|
| 181 | params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly, | 
|---|
| 182 | params.executable.get().string() | 
|---|
| 183 | ); | 
|---|
| 184 | if (NoJobs != NumberJobs) { | 
|---|
| 185 | ELOG(1, "Not all jobs were added succesfully."); | 
|---|
| 186 | return Action::failure; | 
|---|
| 187 | } | 
|---|
| 188 | LOG(1, "INFO: Added " << NoJobs << " from FragmentJobsQueue."); | 
|---|
| 189 |  | 
|---|
| 190 | // prepare process | 
|---|
| 191 | setMaxSteps(NumberJobs); | 
|---|
| 192 | mpqccontroller.setUpdateHandler( | 
|---|
| 193 | boost::bind(&updateSteps, boost::ref(*this), _1, _2) | 
|---|
| 194 | ); | 
|---|
| 195 | start(); | 
|---|
| 196 | mpqccontroller.run(); | 
|---|
| 197 | stop(); | 
|---|
| 198 | if (mpqccontroller.getExitflag() != 0) | 
|---|
| 199 | return Action::failure; | 
|---|
| 200 |  | 
|---|
| 201 | // get back the results and place them in shortrangedata | 
|---|
| 202 | mpqccontroller.getResults(shortrangedata); | 
|---|
| 203 | ASSERT( shortrangedata.size() == NumberJobs, | 
|---|
| 204 | "FragmentationFragmentationAutomationAction::performCall() - number of converted results " | 
|---|
| 205 | +toString(shortrangedata.size())+" and number of jobs "+toString(NumberJobs)+ " differ."); | 
|---|
| 206 | if (mpqccontroller.getExitflag() != 0) | 
|---|
| 207 | return Action::failure; | 
|---|
| 208 |  | 
|---|
| 209 | Exitflag += mpqccontroller.getExitflag(); | 
|---|
| 210 | } | 
|---|
| 211 | #endif | 
|---|
| 212 |  | 
|---|
| 213 | #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) | 
|---|
| 214 | if (params.DoLongrange.get()) { | 
|---|
| 215 | if ( const_cast<const World &>(World::getInstance()).getAllAtoms().size() == 0) { | 
|---|
| 216 | STATUS("Please load the full molecule into the world before starting this action."); | 
|---|
| 217 | return Action::failure; | 
|---|
| 218 | } | 
|---|
| 219 |  | 
|---|
| 220 | // obtain combined charge density | 
|---|
| 221 | FragmentationChargeDensity summedChargeDensity( | 
|---|
| 222 | shortrangedata, | 
|---|
| 223 | FragmentJobQueue::getInstance().getKeySets()); | 
|---|
| 224 | const std::vector<SamplingGrid> full_sample = summedChargeDensity.getFullSampledGrid(); | 
|---|
| 225 | LOG(1, "INFO: There are " << shortrangedata.size() << " short-range and " | 
|---|
| 226 | << full_sample.size() << " level-wise long-range jobs."); | 
|---|
| 227 |  | 
|---|
| 228 | // check boundary conditions | 
|---|
| 229 | const BoundaryConditions::Conditions_t &conditions = | 
|---|
| 230 | World::getInstance().getDomain().getConditions(); | 
|---|
| 231 | const bool OpenBoundaryConditions = | 
|---|
| 232 | !((conditions[0] == BoundaryConditions::Wrap) && | 
|---|
| 233 | (conditions[1] == BoundaryConditions::Wrap) && | 
|---|
| 234 | (conditions[2] == BoundaryConditions::Wrap)); | 
|---|
| 235 | LOG(1, std::string("INFO: Using ") | 
|---|
| 236 | << (OpenBoundaryConditions ? "open" : "periodic") | 
|---|
| 237 | << " boundary conditions."); | 
|---|
| 238 |  | 
|---|
| 239 | // Phase Four: obtain more ids | 
|---|
| 240 | std::map<JobId_t, VMGData> longrangedata; | 
|---|
| 241 | { | 
|---|
| 242 | VMGFragmentController vmgcontroller(io_service); | 
|---|
| 243 | vmgcontroller.setHost(params.host.get()); | 
|---|
| 244 | vmgcontroller.setPort(params.port.get()); | 
|---|
| 245 | const size_t NoJobs = shortrangedata.size()+full_sample.size(); | 
|---|
| 246 | vmgcontroller.requestIds(2*NoJobs); | 
|---|
| 247 | if (vmgcontroller.getExitflag() != 0) | 
|---|
| 248 | return Action::failure; | 
|---|
| 249 |  | 
|---|
| 250 | // Phase Five a: create VMGJobs for electronic charge distribution | 
|---|
| 251 | const size_t near_field_cells = params.near_field_cells.get(); | 
|---|
| 252 | const size_t interpolation_degree = params.interpolation_degree.get(); | 
|---|
| 253 | if (!vmgcontroller.createLongRangeJobs( | 
|---|
| 254 | shortrangedata, | 
|---|
| 255 | full_sample, | 
|---|
| 256 | near_field_cells, | 
|---|
| 257 | interpolation_degree, | 
|---|
| 258 | VMGFragmentController::DontSampleParticles, | 
|---|
| 259 | VMGFragmentController::DoTreatGrid, | 
|---|
| 260 | params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly, | 
|---|
| 261 | params.DoPrintDebug.get(), | 
|---|
| 262 | OpenBoundaryConditions, | 
|---|
| 263 | params.DoSmearCharges.get())) { | 
|---|
| 264 | STATUS("Could not create long-range jobs for electronic charge distribution."); | 
|---|
| 265 | return Action::failure; | 
|---|
| 266 | } | 
|---|
| 267 |  | 
|---|
| 268 | // Phase Six a: calculate result | 
|---|
| 269 | vmgcontroller.waitforResults(NoJobs); | 
|---|
| 270 | if (vmgcontroller.getExitflag() != 0) | 
|---|
| 271 | return Action::failure; | 
|---|
| 272 | vmgcontroller.getResults(longrangedata); | 
|---|
| 273 | ASSERT( NoJobs == longrangedata.size(), | 
|---|
| 274 | "FragmentationFragmentationAutomationAction::performCall() - number of MPQCresults+" | 
|---|
| 275 | +toString(full_sample.size())+"="+toString(NoJobs) | 
|---|
| 276 | +" and first VMGresults "+toString(longrangedata.size())+" don't match."); | 
|---|
| 277 | Exitflag += vmgcontroller.getExitflag(); | 
|---|
| 278 |  | 
|---|
| 279 | { | 
|---|
| 280 | std::map<JobId_t, VMGData> longrangedata_both; | 
|---|
| 281 | // Phase Five b: create VMGJobs for nuclei charge distributions | 
|---|
| 282 | const size_t near_field_cells = params.near_field_cells.get(); | 
|---|
| 283 | const size_t interpolation_degree = params.interpolation_degree.get(); | 
|---|
| 284 | if (!vmgcontroller.createLongRangeJobs( | 
|---|
| 285 | shortrangedata, | 
|---|
| 286 | full_sample, | 
|---|
| 287 | near_field_cells, | 
|---|
| 288 | interpolation_degree, | 
|---|
| 289 | VMGFragmentController::DoSampleParticles, | 
|---|
| 290 | VMGFragmentController::DoTreatGrid, | 
|---|
| 291 | params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly, | 
|---|
| 292 | params.DoPrintDebug.get(), | 
|---|
| 293 | OpenBoundaryConditions, | 
|---|
| 294 | params.DoSmearCharges.get())) { | 
|---|
| 295 | STATUS("Could not create long-range jobs for nuclei charge distribution."); | 
|---|
| 296 | return Action::failure; | 
|---|
| 297 | } | 
|---|
| 298 |  | 
|---|
| 299 | // Phase Six b: calculate result | 
|---|
| 300 | vmgcontroller.waitforResults(NoJobs); | 
|---|
| 301 | if (vmgcontroller.getExitflag() != 0) | 
|---|
| 302 | return Action::failure; | 
|---|
| 303 | vmgcontroller.getResults(longrangedata_both); | 
|---|
| 304 | ASSERT( NoJobs == longrangedata_both.size(), | 
|---|
| 305 | "FragmentationFragmentationAutomationAction::performCall() - number of MPQCresults+" | 
|---|
| 306 | +toString(full_sample.size())+"="+toString(NoJobs) | 
|---|
| 307 | +" and second VMGresults "+toString(longrangedata_both.size())+" don't match."); | 
|---|
| 308 | if (vmgcontroller.getExitflag() != 0) | 
|---|
| 309 | return Action::failure; | 
|---|
| 310 | Exitflag += vmgcontroller.getExitflag(); | 
|---|
| 311 |  | 
|---|
| 312 | // go through either data and replace nuclei_long with contribution from both | 
|---|
| 313 | ASSERT( longrangedata.size() == longrangedata_both.size(), | 
|---|
| 314 | "FragmentationFragmentationAutomationAction::performCall() - longrange results have different sizes."); | 
|---|
| 315 | std::map<JobId_t, VMGData>::iterator destiter = longrangedata.begin(); | 
|---|
| 316 | std::map<JobId_t, VMGData>::const_iterator srciter = longrangedata_both.begin(); | 
|---|
| 317 | for (;destiter != longrangedata.end(); ++srciter, ++destiter) { | 
|---|
| 318 | destiter->second.both_sampled_potential = srciter->second.sampled_potential; | 
|---|
| 319 | destiter->second.nuclei_long = srciter->second.nuclei_long; | 
|---|
| 320 | destiter->second.forces = srciter->second.forces; | 
|---|
| 321 | destiter->second.hasForces = srciter->second.hasForces; | 
|---|
| 322 | } | 
|---|
| 323 | } | 
|---|
| 324 | } | 
|---|
| 325 |  | 
|---|
| 326 | if (params.DoPrintDebug.get()) { | 
|---|
| 327 | std::map<JobId_t, std::string> debugData; | 
|---|
| 328 | { | 
|---|
| 329 | if (!full_sample.empty()) { | 
|---|
| 330 | // create debug jobs for each level to print the summed-up potential to vtk files | 
|---|
| 331 | VMGDebugGridFragmentController debugcontroller(io_service); | 
|---|
| 332 | debugcontroller.setHost(params.host.get()); | 
|---|
| 333 | debugcontroller.setPort(params.port.get()); | 
|---|
| 334 | debugcontroller.requestIds(full_sample.size()); | 
|---|
| 335 | if (!debugcontroller.createDebugJobs(full_sample, OpenBoundaryConditions)) { | 
|---|
| 336 | STATUS("Could not create debug jobs."); | 
|---|
| 337 | return Action::failure; | 
|---|
| 338 | } | 
|---|
| 339 | debugcontroller.waitforResults(full_sample.size()); | 
|---|
| 340 | debugcontroller.getResults(debugData); | 
|---|
| 341 | Exitflag += debugcontroller.getExitflag(); | 
|---|
| 342 | } | 
|---|
| 343 | } | 
|---|
| 344 | } | 
|---|
| 345 | container.addFullResults(keysets, forcekeysets, shortrangedata, longrangedata); | 
|---|
| 346 | } else { | 
|---|
| 347 | container.addShortRangeResults(keysets, forcekeysets, shortrangedata); | 
|---|
| 348 | } | 
|---|
| 349 | #else | 
|---|
| 350 | container.addShortRangeResults(keysets, forcekeysets, shortrangedata); | 
|---|
| 351 | #endif | 
|---|
| 352 |  | 
|---|
| 353 | // now clear all present jobs as we are done | 
|---|
| 354 | FragmentJobQueue::getInstance().clear(); | 
|---|
| 355 |  | 
|---|
| 356 | // if file is given, advise results container to store to file | 
|---|
| 357 | if (!params.resultsfile.get().empty()) { | 
|---|
| 358 | boost::filesystem::path resultsfile = params.resultsfile.get(); | 
|---|
| 359 | std::ofstream returnstream(resultsfile.string().c_str()); | 
|---|
| 360 | if (returnstream.good()) { | 
|---|
| 361 | boost::archive::text_oarchive oa(returnstream); | 
|---|
| 362 | oa << container; | 
|---|
| 363 | } | 
|---|
| 364 | Exitflag += (int)(!returnstream.good()); | 
|---|
| 365 | returnstream.close(); | 
|---|
| 366 | } | 
|---|
| 367 |  | 
|---|
| 368 | if (Exitflag != 0) | 
|---|
| 369 | STATUS("Controller has returned failure."); | 
|---|
| 370 | return (Exitflag == 0) ? Action::success : Action::failure; | 
|---|
| 371 | } | 
|---|
| 372 |  | 
|---|
| 373 | ActionState::ptr FragmentationFragmentationAutomationAction::performUndo(ActionState::ptr _state) { | 
|---|
| 374 | return Action::success; | 
|---|
| 375 | } | 
|---|
| 376 |  | 
|---|
| 377 | ActionState::ptr FragmentationFragmentationAutomationAction::performRedo(ActionState::ptr _state){ | 
|---|
| 378 | return Action::success; | 
|---|
| 379 | } | 
|---|
| 380 |  | 
|---|
| 381 | bool FragmentationFragmentationAutomationAction::canUndo() { | 
|---|
| 382 | return false; | 
|---|
| 383 | } | 
|---|
| 384 |  | 
|---|
| 385 | bool FragmentationFragmentationAutomationAction::shouldUndo() { | 
|---|
| 386 | return false; | 
|---|
| 387 | } | 
|---|
| 388 | /** =========== end of function ====================== */ | 
|---|