Last active
December 2, 2016 01:01
-
-
Save oyamad/0628aa6e5d519f05c36e4eafbd810aa5 to your computer and use it in GitHub Desktop.
Errors with LRSLib
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://github.com/oyamad/LRSLib.jl/commit/cae37b5caddf3cd8855e000d575dcc03b51dce12 | |
| using LRSLib | |
| using Polyhedra | |
| A1 = -eye(Int, 9) # x >= 0; | |
| b1 = zeros(Int, 9); | |
| A2 = eye(Int, 9) # x <= 1; | |
| b2 = ones(Int, 9); | |
| A3 = zeros(Int, 9, 9); | |
| b3 = 3 * ones(Int, 9); | |
| i = 1; | |
| for a = 1:3 | |
| for b = (a+1):3 | |
| for c = 1:3 | |
| for d = (c+1):3 | |
| ac = a + (c-1) * 3 | |
| ad = a + (d-1) * 3 | |
| bc = b + (c-1) * 3 | |
| bd = b + (d-1) * 3 | |
| A3[i, ac] = 1 | |
| A3[i, ad] = 1 | |
| A3[i, bc] = 1 | |
| A3[i, bd] = 1 | |
| i += 1 | |
| end | |
| end | |
| end | |
| end; | |
| A = [A1; A2; A3]; | |
| b = [b1; b2; b3]; | |
| ine = SimpleHRepresentation(A, b); | |
| lib = LRSLibrary() | |
| p = polyhedron(ine, lib); | |
| m = LRSLib.getinem(p, :Fresh) | |
| typeof(m) | |
| enumtomat(m) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ julia board0.jl | |
| M = Matrix{Rational{BigInt}}(0,N + 1) = | |
| GC error (probable corruption) : | |
| Allocations: 4133930 (Pool: 4132991; Big: 939); GC: 4 | |
| <?#0x7fe1b0401f00::0x0> | |
| signal (4): Illegal instruction: 4 | |
| while loading /Users/oyama/tmp/board0.jl, in expression starting on line 39 | |
| abort at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia//libLLVM-3.7.dylib (unknown line) | |
| push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1472 | |
| gc_push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1183 [inlined] | |
| push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1460 | |
| gc_push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1183 [inlined] | |
| gc_mark_stack at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1252 [inlined] | |
| gc_mark_task_stack at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1279 [inlined] | |
| gc_mark_task at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1302 | |
| push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1430 | |
| _jl_gc_collect at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1681 [inlined] | |
| jl_gc_collect at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1858 | |
| jl_gc_pool_alloc at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:828 | |
| jl_gc_alloc_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:148 [inlined] | |
| jl_new_uninitialized_datatype at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/alloc.c:850 | |
| inst_datatype at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:2254 | |
| inst_type_w_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:2532 | |
| jl_instantiate_type_with at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:2540 [inlined] | |
| jl_apply_type_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:1846 | |
| inst_datatype at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:2234 | |
| inst_type_w_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:2532 | |
| inst_datatype at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:2283 | |
| inst_type_w_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:2532 | |
| jl_instantiate_type_with at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:2540 [inlined] | |
| jl_apply_type_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:1846 | |
| jl_apply_type at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:1856 [inlined] | |
| intersect_tag at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:735 [inlined] | |
| jl_type_intersect at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:1004 | |
| intersect_tag at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:710 [inlined] | |
| jl_type_intersect at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:1004 | |
| intersect_tuple at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:633 [inlined] | |
| jl_type_intersect at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:992 | |
| jl_type_intersection_matching at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/jltypes.c:1521 | |
| jl_lookup_match at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/typemap.c:376 | |
| jl_typemap_intersection_node_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/typemap.c:503 [inlined] | |
| jl_typemap_intersection_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/typemap.c:565 | |
| jl_typemap_intersection_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/typemap.c:556 | |
| ml_matches at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2279 [inlined] | |
| jl_matching_methods at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2300 | |
| _methods_by_ftype at ./reflection.jl:223 | |
| jlcall__methods_by_ftype_673 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:765 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval at ./inference.jl:1158 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1781 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1781 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| copy! at ./abstractarray.jl:477 | |
| abstract_eval_call at ./inference.jl:1100 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_interpret at ./inference.jl:1238 | |
| jlcall_abstract_interpret_531 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1726 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_interpret at ./inference.jl:1246 | |
| jlcall_abstract_interpret_531 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1726 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1781 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1781 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1781 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1781 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_interpret at ./inference.jl:1246 | |
| jlcall_abstract_interpret_531 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1726 | |
| typeinf_loop at ./inference.jl:1672 | |
| jlcall_typeinf_loop_235 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1592 | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_ext at ./inference.jl:1616 | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| jl_apply at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia.h:1392 [inlined] | |
| jl_type_infer at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:210 | |
| jl_compile_for_dispatch at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1295 | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:184 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| generatorproducer at /Users/oyama/.julia/v0.5/LRSLib/src/conversion.jl:30 | |
| enumtomat at /Users/oyama/.julia/v0.5/LRSLib/src/conversion.jl:51 | |
| unknown function (ip: 0x32267d162) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| do_call at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/interpreter.c:66 | |
| eval at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/interpreter.c:190 | |
| jl_toplevel_eval_flex at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:558 | |
| jl_parse_eval_all at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/ast.c:717 | |
| jl_load at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:596 [inlined] | |
| jl_load_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:605 | |
| include_from_node1 at ./loading.jl:488 | |
| jlcall_include_from_node1_20125 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| process_options at ./client.jl:262 | |
| _start at ./client.jl:318 | |
| jlcall__start_21452 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| true_main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) | |
| main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) | |
| Allocations: 4133930 (Pool: 4132991; Big: 939); GC: 4 | |
| signal (6): Abort trap: 6 | |
| while loading /Users/oyama/tmp/board0.jl, in expression starting on line 39 | |
| sigprocmask at /usr/lib/system/libsystem_kernel.dylib (unknown line) | |
| Allocations: 4133930 (Pool: 4132991; Big: 939); GC: 4 | |
| Abort trap: 6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ julia board0.jl | |
| M = Matrix{Rational{BigInt}}(0,N + 1) = | |
| signal (11): Segmentation fault: 11 | |
| while loading /Users/oyama/tmp/board0.jl, in expression starting on line 39 | |
| push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1339 | |
| gc_push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1183 [inlined] | |
| push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1460 | |
| gc_push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1183 [inlined] | |
| gc_mark_stack at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1252 [inlined] | |
| gc_mark_task_stack at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1279 [inlined] | |
| gc_mark_task at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1302 | |
| push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1430 | |
| _jl_gc_collect at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1681 [inlined] | |
| jl_gc_collect at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1858 | |
| jl_gc_pool_alloc at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:828 | |
| jlcall_indexed_next_210 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| Type at ./inference.jl:99 | |
| typeinf_edge at ./inference.jl:1572 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| copy! at ./abstractarray.jl:477 | |
| abstract_eval_call at ./inference.jl:1100 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_interpret at ./inference.jl:1249 | |
| jlcall_abstract_interpret_531 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1726 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_interpret at ./inference.jl:1238 | |
| jlcall_abstract_interpret_531 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1726 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1781 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1781 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1781 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1781 | |
| typeinf_loop at ./inference.jl:1655 | |
| typeinf_edge at ./inference.jl:1592 | |
| jlcall_typeinf_edge_743 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1598 | |
| jlcall_typeinf_edge_741 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call_gf_by_type at ./inference.jl:888 | |
| jlcall_abstract_call_gf_by_type_685 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_call at ./inference.jl:1096 | |
| jlcall_abstract_call_589 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_eval_call at ./inference.jl:1126 | |
| abstract_eval at ./inference.jl:1147 | |
| jlcall_abstract_eval_536 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| abstract_interpret at ./inference.jl:1246 | |
| jlcall_abstract_interpret_531 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_frame at ./inference.jl:1726 | |
| typeinf_loop at ./inference.jl:1672 | |
| jlcall_typeinf_loop_235 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_edge at ./inference.jl:1592 | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| typeinf_ext at ./inference.jl:1616 | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| jl_apply at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia.h:1392 [inlined] | |
| jl_type_infer at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:210 | |
| jl_compile_for_dispatch at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1295 | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:184 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| generatorproducer at /Users/oyama/.julia/v0.5/LRSLib/src/conversion.jl:30 | |
| enumtomat at /Users/oyama/.julia/v0.5/LRSLib/src/conversion.jl:51 | |
| unknown function (ip: 0x325cda102) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| do_call at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/interpreter.c:66 | |
| eval at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/interpreter.c:190 | |
| jl_toplevel_eval_flex at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:558 | |
| jl_parse_eval_all at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/ast.c:717 | |
| jl_load at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:596 [inlined] | |
| jl_load_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:605 | |
| include_from_node1 at ./loading.jl:488 | |
| jlcall_include_from_node1_20125 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| process_options at ./client.jl:262 | |
| _start at ./client.jl:318 | |
| jlcall__start_21452 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| true_main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) | |
| main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) | |
| Allocations: 4134466 (Pool: 4133528; Big: 938); GC: 4 | |
| Segmentation fault: 11 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ julia board0.jl | |
| M = Matrix{Rational{BigInt}}(0,N + 1) = | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,3//4,3//4,3//4,3//4,3//4,3//4,3//4,3//4,3//4] | |
| output' = Rational{BigInt}[1//1 3//4 3//4 3//4 3//4 3//4 3//4 3//4 3//4 3//4] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,1//2,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//2 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,1//1,0//1,1//2,1//1,0//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//1 1//2 1//1 0//1 1//2 1//1 0//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,0//1,1//2,1//1,0//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 0//1 1//2 1//1 0//1 1//2 1//1 0//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,1//1,0//1,1//2,1//1,1//2,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//1 1//2 1//1 0//1 1//2 1//1 1//2 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,1//2,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 0//1 1//2 1//1 1//2 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,0//1,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 0//1 1//2 1//1 0//1 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,0//1,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//2 0//1 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,0//1,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//2 1//1 0//1 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,1//2,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//2 1//2 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,0//1,1//1,1//2,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//2 1//1 0//1 1//1 1//2 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,0//1,1//1,1//2,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 0//1 1//2 1//1 0//1 1//1 1//2 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,0//1,1//1,1//2,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//2 0//1 1//1 1//2 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,1//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,1//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,0//1,1//1,0//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//2 1//1 0//1 1//1 0//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,0//1,1//1,1//2,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//2 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,1//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,1//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,1//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//2,1//2,0//1,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//2 1//2 0//1 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//2,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//2 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,1//2,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//2 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,1//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,1//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,1//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,1//2,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//2 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,1//2,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//2 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,1//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,1//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,1//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,1//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,1//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,1//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,1//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//2,1//2,1//2,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//2 1//2 1//2 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//1,1//2,0//1,1//1,1//1,1//2,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//1 1//1 1//2 0//1 1//1 1//1 1//2 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//1,1//2,0//1,1//1,1//1,0//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//1 1//1 1//2 0//1 1//1 1//1 0//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,0//1,1//1,1//2,0//1,1//1,1//1,0//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//2 0//1 1//1 1//1 0//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,0//1,1//1,1//2,0//1,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//2 0//1 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,0//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,0//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,0//1,0//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,0//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,0//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,0//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,0//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,0//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,0//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,0//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,0//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,0//1,1//1,0//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 1//1 0//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,0//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,0//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,1//1,0//1,0//1,1//1,1//2,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//1 1//2 1//1 0//1 0//1 1//1 1//2 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,0//1,0//1,1//1,1//2,1//2,1//2] | |
| output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 0//1 1//1 1//2 1//2 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//1,0//1,0//1,1//1,1//1,1//2,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//1 1//1 0//1 0//1 1//1 1//1 1//2 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,0//1,0//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,0//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,0//1,0//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,0//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,0//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,0//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,0//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,0//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,0//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,0//1,1//1,0//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,0//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,0//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,0//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,0//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,0//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,0//1,1//1,1//1,0//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,0//1,0//1,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//2 1//1 0//1 0//1 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,1//2,0//1,1//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//2 0//1 1//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,0//1,1//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 1//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,1//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,1//1,0//1,1//2,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//1 0//1 1//2 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,0//1,1//1,1//1,0//1,1//2,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//1 0//1 1//2 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,1//1,0//1,0//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//1 0//1 0//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,0//1,0//1,0//1,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//2 1//2 1//1 0//1 0//1 0//1 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,1//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,1//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,1//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,0//1,0//1,1//1,1//1,0//1] | |
| output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//2,1//1,0//1,1//2,1//1,1//1,1//2] | |
| output' = Rational{BigInt}[1//1 1//1 0//1 1//2 1//1 0//1 1//2 1//1 1//1 1//2] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,1//1,1//1,1//2,1//2,1//2,1//1] | |
| output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//1 1//1 1//2 1//2 1//2 1//1] | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| flag = getnextbasis(m) = true | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| output = getsolution(m,col) = nothing | |
| signal (11): Segmentation fault: 11 | |
| while loading /Users/oyama/tmp/board0.jl, in expression starting on line 39 | |
| push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1339 | |
| gc_push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1183 [inlined] | |
| push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1460 | |
| gc_push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1183 [inlined] | |
| gc_mark_stack at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1252 [inlined] | |
| gc_mark_task_stack at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1279 [inlined] | |
| gc_mark_task at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1302 | |
| push_root at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1430 | |
| _jl_gc_collect at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1681 [inlined] | |
| jl_gc_collect at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:1858 | |
| jl_gc_pool_alloc at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gc.c:828 | |
| getsolution at /Users/oyama/.julia/v0.5/LRSLib/src/matrix.jl:382 | |
| macro expansion at ./show.jl:218 [inlined] | |
| generatorproducer at /Users/oyama/.julia/v0.5/LRSLib/src/conversion.jl:30 | |
| enumtomat at /Users/oyama/.julia/v0.5/LRSLib/src/conversion.jl:51 | |
| unknown function (ip: 0x3229ea132) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| do_call at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/interpreter.c:66 | |
| eval at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/interpreter.c:190 | |
| jl_toplevel_eval_flex at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:558 | |
| jl_parse_eval_all at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/ast.c:717 | |
| jl_load at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:596 [inlined] | |
| jl_load_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:605 | |
| include_from_node1 at ./loading.jl:488 | |
| jlcall_include_from_node1_20125 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| process_options at ./client.jl:262 | |
| _start at ./client.jl:318 | |
| jlcall__start_21452 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) | |
| jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] | |
| jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 | |
| true_main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) | |
| main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) | |
| Allocations: 4530771 (Pool: 4529811; Big: 960); GC: 5 | |
| Segmentation fault: 11 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment