Skip to content

Commit

Permalink
new ZF ref #43
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwang15 committed Aug 9, 2024
1 parent 632e781 commit da269c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/restrictions_zero.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ arma::colvec zero_restrictions(

vec z = ZF(0).col(0);
for (int j = 1; j < ZF.n_elem; j++) {
z = join_vert(z, ZF(j).col(j));
vec zj = ZF(j).col(j);
z = join_vert(z, zj);
}

return z;
Expand Down

0 comments on commit da269c6

Please sign in to comment.