File tree Expand file tree Collapse file tree
include/CXXGraph/Partitioning Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5656 working-directory : ${{github.workspace}}/build/test
5757 # Execute tests defined by the CMake configuration.
5858 # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
59- run : ctest
59+ run : ctest --output-on-failure
6060
Original file line number Diff line number Diff line change @@ -192,20 +192,9 @@ CoordinatedPartitionState<T> Partitioner<T>::startCoordinated() {
192192 }
193193 }
194194 for (int t = 0 ; t < processors; ++t) {
195- if (myThreads[t].joinable ()) {
196- myThreads[t].join ();
197- }
198- // if(myRunnable[t] != nullptr){
199- // delete myRunnable[t];
200- // }
201- }
202- /*
203- for (int t = 0; t < processors; ++t){
204- if (runnableList[t] != nullptr){
205- delete runnableList[t];
206- }
195+ myThreads[t].join ();
207196 }
208- */
197+
209198 // new shared state is move constructed then returned
210199 // (so has no effect on the shared ponter)
211200 return std::move (*shared_state);
You can’t perform that action at this time.
0 commit comments