Skip to content

Commit 3a259ff

Browse files
committed
disable verbose
1 parent a5ce2ce commit 3a259ff

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

include/osp/dag_divider/isomorphism_divider/EftSubgraphScheduler.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class EftSubgraphScheduler {
5151

5252
private:
5353

54-
static constexpr bool verbose = true;
54+
static constexpr bool verbose = false;
5555

5656
using job_id_t = vertex_idx_t<Graph_t>;
5757

include/osp/dag_divider/isomorphism_divider/IsomorphicSubgraphScheduler.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class IsomorphicSubgraphScheduler {
4242

4343
private:
4444

45-
static constexpr bool verbose = true;
45+
static constexpr bool verbose = false;
4646
const HashComputer<vertex_idx_t<Graph_t>>* hash_computer_;
4747
size_t symmetry_ = 4;
4848
size_t min_symmetry_ = 2;

include/osp/dag_divider/isomorphism_divider/OrbitGraphProcessor.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class OrbitGraphProcessor {
5252

5353
using VertexType = vertex_idx_t<Graph_t>;
5454

55-
static constexpr bool verbose = true;
55+
static constexpr bool verbose = false;
5656

5757
// Represents a group of isomorphic subgraphs, corresponding to a single node in a coarse graph.
5858
struct Group {

include/osp/dag_divider/isomorphism_divider/TrimmedGroupScheduler.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class TrimmedGroupScheduler : public Scheduler<Constr_Graph_t> {
4242
Scheduler<Constr_Graph_t> *sub_scheduler;
4343
unsigned min_non_zero_procs_;
4444

45-
static constexpr bool verbose = true;
45+
static constexpr bool verbose = false;
4646

4747
public:
4848
TrimmedGroupScheduler(Scheduler<Constr_Graph_t> &scheduler, unsigned min_non_zero_procs)

0 commit comments

Comments
 (0)