File tree 3 files changed +19
-3
lines changed
3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,15 @@ using (var ctx = new Z3Context())
27
27
28
28
### Problem - Linear Algebra
29
29
30
- Solve the following system with 3 variables, with linear equalities and inequalities.
30
+ Solve the following system with 3 variables, with linear equalities and inequalities:
31
+
32
+ $$
33
+ x_1 - x_2 \ge 1
34
+ \\
35
+ x_1 - x_2 \le 3
36
+ \\
37
+ x_1 = 2x_3 + x_2
38
+ $$
31
39
32
40
``` csharp
33
41
using (var ctx = new Z3Context ())
Original file line number Diff line number Diff line change @@ -71,10 +71,10 @@ param (
71
71
[string ] $BuildModulePath ,
72
72
73
73
[Parameter ()]
74
- [version ] $BuildModuleVersion = " 1.5.3 " ,
74
+ [version ] $BuildModuleVersion = " 1.5.4 " ,
75
75
76
76
[Parameter ()]
77
- [version ] $InvokeBuildModuleVersion = " 5.7.1 "
77
+ [version ] $InvokeBuildModuleVersion = " 5.10.3 "
78
78
)
79
79
80
80
$ErrorActionPreference = $ErrorActionPreference ? $ErrorActionPreference : ' Stop'
Original file line number Diff line number Diff line change @@ -62,6 +62,14 @@ using (var ctx = new Z3Context())
62
62
63
63
Solve the following system with 3 variables, with linear equalities and inequalities.
64
64
65
+ $$
66
+ x_1 - x_2 \ge 1
67
+ \\
68
+ x_1 - x_2 \le 3
69
+ \\
70
+ x_1 = 2x_3 + x_2
71
+ $$
72
+
65
73
#!csharp
66
74
67
75
using (var ctx = new Z3Context())
You can’t perform that action at this time.
0 commit comments