Skip to content

Commit

Permalink
Merge branch 'master' into fix/compilation-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikmohta authored Aug 7, 2017
2 parents 7d223d7 + b026038 commit cf65391
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ template <class T> class BiFunction {

}
double getBi(int i){
return biVector_.coeff(i, 0);
// Note this is normally a VectorXd
// So dynamic rows and 1 column
return biVector_.coeff(i,0);
}
};

Expand Down

0 comments on commit cf65391

Please sign in to comment.