Skip to content

Commit e71c955

Browse files
committed
Formats code and removes personal pipeline preferences
1 parent a60483f commit e71c955

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ name: CMake
22

33
on:
44
push:
5-
# FAIL REVIEW -- I like pipelines to run on push
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
69
env:
710
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
811
BUILD_TYPE: Release

include/CXXGraph/Partitioning/Partitioner.hpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,8 @@ CoordinatedPartitionState<T> Partitioner<T>::startCoordinated() {
185185
list_vector[t] = std::vector<shared<const Edge<T>>>(
186186
std::next(dataset->begin(), iStart),
187187
std::next(dataset->begin(), iEnd));
188-
myRunnable[t].reset(new PartitionerThread<T>(
189-
list_vector[t], shared_state,
190-
algorithm));
188+
myRunnable[t].reset(
189+
new PartitionerThread<T>(list_vector[t], shared_state, algorithm));
191190
myThreads[t] = std::thread(&Runnable::run, myRunnable[t].get());
192191
}
193192
}

0 commit comments

Comments
 (0)