aboutsummaryrefslogtreecommitdiff
path: root/doc/special_examples/Tutorial_sparse_example_details.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/special_examples/Tutorial_sparse_example_details.cpp')
-rw-r--r--doc/special_examples/Tutorial_sparse_example_details.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/special_examples/Tutorial_sparse_example_details.cpp b/doc/special_examples/Tutorial_sparse_example_details.cpp
index 7d820b44a..bc18b0188 100644
--- a/doc/special_examples/Tutorial_sparse_example_details.cpp
+++ b/doc/special_examples/Tutorial_sparse_example_details.cpp
@@ -8,7 +8,7 @@ typedef Eigen::Triplet<double> T;
void insertCoefficient(int id, int i, int j, double w, std::vector<T>& coeffs,
Eigen::VectorXd& b, const Eigen::VectorXd& boundary)
{
- int n = boundary.size();
+ int n = int(boundary.size());
int id1 = i+j*n;
if(i==-1 || i==n) b(id) -= w * boundary(j); // constrained coefficient