Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CoMISo
CoMISo
Commits
44c2e6a0
Commit
44c2e6a0
authored
Feb 06, 2017
by
Marco Amagliani
Browse files
Fix a link error in release build.
gcc cannot find ConstrainedSolver::solve if it is not explicitely instantiated.
parent
5eaf3185
Changes
1
Hide whitespace changes
Inline
Side-by-side
Solver/ConstrainedSolver.cc
View file @
44c2e6a0
...
...
@@ -127,6 +127,9 @@ using namespace COMISO_STD;
template
void
ConstrainedSolver
::
solve
(
WSRowMatrix
&
,
WSColMatrix
&
,
DoubleVector
&
,
DoubleVector
&
,
IntVector
&
,
double
,
bool
,
bool
);
template
void
ConstrainedSolver
::
solve
(
WSRowMatrix
&
,
WSRowMatrix
&
,
DoubleVector
&
,
IntVector
&
,
double
,
bool
,
bool
);
template
void
ConstrainedSolver
::
solve_const
(
const
WSRowMatrix
&
,
const
WSColMatrix
&
,
DoubleVector
&
,
const
DoubleVector
&
,
const
IntVector
&
,
double
,
bool
,
bool
);
...
...
Write
Preview
Supports
Markdown
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