File tree Expand file tree Collapse file tree
partitioning/partitioners
pebbling/pebblers/pebblingILP Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ class HypergraphPartitioningILPBase {
5555
5656template <typename HypergraphT>
5757void HypergraphPartitioningILPBase<HypergraphT>::SolveIlp(Model &model) {
58- model.SetIntParam (COPT_INTPARAM_LOGTOCONSOLE, 0 );
58+ // model.SetIntParam(COPT_INTPARAM_LOGTOCONSOLE, 0);
5959
6060 model.SetDblParam (COPT_DBLPARAM_TIMELIMIT, timeLimitSeconds_);
6161 model.SetIntParam (COPT_INTPARAM_THREADS, 128 );
Original file line number Diff line number Diff line change @@ -239,9 +239,9 @@ class MultiProcessorPebbling : public Scheduler<GraphT> {
239239
240240template <typename GraphT>
241241void MultiProcessorPebbling<GraphT>::SolveIlp() {
242- if (!verbose_) {
243- model_.SetIntParam (COPT_INTPARAM_LOGTOCONSOLE, 0 );
244- }
242+ // if (!verbose_) {
243+ // model_.SetIntParam(COPT_INTPARAM_LOGTOCONSOLE, 0);
244+ // }
245245
246246 model_.SetDblParam (COPT_DBLPARAM_TIMELIMIT, timeLimitSeconds_);
247247 model_.SetIntParam (COPT_INTPARAM_THREADS, 128 );
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ class AcyclicPartitioningILP {
156156
157157template <typename GraphT>
158158void AcyclicPartitioningILP<GraphT>::SolveIlp() {
159- model_.SetIntParam (COPT_INTPARAM_LOGTOCONSOLE, 0 );
159+ // model_.SetIntParam(COPT_INTPARAM_LOGTOCONSOLE, 0);
160160
161161 model_.SetDblParam (COPT_DBLPARAM_TIMELIMIT, timeLimitSeconds_);
162162 model_.SetIntParam (COPT_INTPARAM_THREADS, 128 );
You can’t perform that action at this time.
0 commit comments