Skip to content

Commit 1097bae

Browse files
committed
LiNtInG
1 parent 6a3c4af commit 1097bae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/purify/distribute.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ std::vector<t_int> distribute_measurements(Vector<t_real> const &u, Vector<t_rea
4242
"Using {} to make {} partitions from {} visibilities, with {} visibilities per a node.",
4343
plan_name, number_of_nodes, index.size(), partition_size);
4444
std::vector<t_int> partitions(u.size());
45-
if (std::floor(static_cast<t_real>(index.size()-1) / static_cast<t_real>(partition_size)) >
45+
if (std::floor(static_cast<t_real>(index.size() - 1) / static_cast<t_real>(partition_size)) >
4646
number_of_nodes - 1) {
4747
PURIFY_ERROR("Error: Probably a bug in distribution plan.");
4848
throw std::runtime_error("Distributing data into too many nodes");

0 commit comments

Comments
 (0)