Skip to content

Commit

Permalink
add singular matrix 2x2 problem
Browse files Browse the repository at this point in the history
  • Loading branch information
ghilesZ committed Oct 22, 2024
1 parent 01b2a8f commit 6e4ceb4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions problems/singular.abs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
init{
int v3 = [0; 100];
int v2 = [0; 100];
int v1 = [0; 100];
int v0 = [0; 100]
}constraints{
abs(((v3 * v0) - (v2 * v1))) < 1.00000000001e-09
}

0 comments on commit 6e4ceb4

Please sign in to comment.