Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
CoMISo
CoMISo
Commits
eb3391b2
Commit
eb3391b2
authored
Nov 06, 2019
by
Max Lyon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
print number of integer variables in ConstrainedSolver
parent
c7dbd759
Pipeline
#12709
passed with stages
in 9 minutes and 33 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Solver/ConstrainedSolverT.cc
Solver/ConstrainedSolverT.cc
+2
-2
No files found.
Solver/ConstrainedSolverT.cc
View file @
eb3391b2
...
...
@@ -223,8 +223,8 @@ ConstrainedSolver::solve(
gmm
::
size_type
ncons
=
gmm
::
mat_nrows
(
_constraints
);
DEB_out_if
(
_show_timings
,
1
,
"Initital dimension: "
<<
nrows
<<
" x "
<<
ncols
<<
", number of constraints: "
<<
ncons
<<
" use reordering: "
<<
use_constraint_reordering
()
<<
"
\n
"
)
<<
", number of constraints: "
<<
ncons
<<
", number of integer variables: "
<<
_idx_to_round
.
size
()
<<
"
,
use reordering: "
<<
(
use_constraint_reordering
()
?
"yes"
:
"no"
)
<<
"
\n
"
)
// StopWatch for Timings
Base
::
StopWatch
sw
,
sw2
;
sw
.
start
();
sw2
.
start
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment