Skip to content

Commit a97e5fc

Browse files
fix error in mk_nuget_task.py
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent cd95c7e commit a97e5fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/mk_nuget_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def unpack(packages, symbols, arch):
7878
files = ["Microsoft.Z3.dll", "Microsoft.Z3.pdb", "Microsoft.Z3.xml"]
7979
for b in files:
8080
file1 = f"{package_dir}/bin/{b}"
81-
file2 = os.path.join(file,"netstandard2.0")
81+
file2 = os.path.join(file1,"netstandard2.0")
8282
if os.path.exists(file1):
8383
zip_ref.extract(file1, f"{tmp}")
8484
replace(f"{tmp}/{package_dir}/bin/{b}", f"out/lib/netstandard2.0/{b}")

src/math/lp/int_solver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ namespace lp {
321321
if (r == lia_move::undef) r = patch_basic_columns();
322322
if (r == lia_move::undef && should_find_cube()) r = int_cube(lia)();
323323
if (r == lia_move::undef) lra.move_non_basic_columns_to_bounds();
324-
// if (r == lia_move::undef) r = tighten_bounds();
324+
if (r == lia_move::undef) r = tighten_bounds();
325325
if (r == lia_move::undef && should_hnf_cut()) r = hnf_cut();
326326
if (r == lia_move::undef && should_gomory_cut()) r = gomory(lia).get_gomory_cuts(2);
327327
if (r == lia_move::undef && should_solve_dioph_eq()) r = solve_dioph_eq();

0 commit comments

Comments
 (0)