Changeset 6294b6 for src/Fragmentation
- Timestamp:
- Aug 11, 2025, 5:43:56 PM (3 months ago)
- Branches:
- Candidate_v1.7.0, stable
- Children:
- c41ce0
- Parents:
- c099dc
- git-author:
- Frederik Heber <frederik.heber@…> (05/02/24 22:20:01)
- git-committer:
- Frederik Heber <frederik.heber@…> (08/11/25 17:43:56)
- Location:
- src/Fragmentation
- Files:
-
- 4 edited
-
Automation/FragmentJobQueue.cpp (modified) (1 diff)
-
Automation/MPQCFragmentController.cpp (modified) (2 diffs)
-
Automation/MPQCFragmentController.hpp (modified) (1 diff)
-
Exporters/ExportGraph_ToJobs.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Automation/FragmentJobQueue.cpp
rc099dc r6294b6 75 75 76 76 // create job 77 FragmentJob::ptr testJob( new MPQCJob(JobId::IllegalJob, output, begin, end, level) ); 77 const int verbose = getVerbosity(); 78 FragmentJob::ptr testJob( new MPQCJob(JobId::IllegalJob, output, begin, end, level, verbose) ); 78 79 testJob->setPriority(newlines); 79 80 jobs.push_back(testJob); -
src/Fragmentation/Automation/MPQCFragmentController.cpp
rc099dc r6294b6 54 54 bool MPQCFragmentController::addJobsFromQueue( 55 55 const MPQCData::DoLongrange_t _DoLongrange, 56 const MPQCData::DoValenceOnly_t _DoValenceOnly 56 const MPQCData::DoValenceOnly_t _DoValenceOnly, 57 const int _verbose 57 58 ) 58 59 { … … 66 67 job->DoLongrange = _DoLongrange; 67 68 job->DoValenceOnly = _DoValenceOnly; 69 job->verbose = _verbose; 68 70 JobId_t id = getAvailableId(); 69 71 if (id == (JobId_t)JobId::IllegalJob) { -
src/Fragmentation/Automation/MPQCFragmentController.hpp
rc099dc r6294b6 47 47 bool addJobsFromQueue( 48 48 const MPQCData::DoLongrange_t _DoLongrange, 49 const MPQCData::DoValenceOnly_t _DoValenceOnly 49 const MPQCData::DoValenceOnly_t _DoValenceOnly, 50 const int _verbose 50 51 ); 51 52 -
src/Fragmentation/Exporters/ExportGraph_ToJobs.cpp
rc099dc r6294b6 294 294 JobId::IllegalJob, 295 295 output.str(), 296 fragment_window.begin, fragment_window.end, fragment_window.level )296 fragment_window.begin, fragment_window.end, fragment_window.level, getVerbosity()) 297 297 #else 298 298 new MPQCCommandJob(output.str(), JobId::IllegalJob)
Note:
See TracChangeset
for help on using the changeset viewer.
