Skip to content

Instantly share code, notes, and snippets.

@oyamad
Last active December 2, 2016 02:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oyamad/aca7ab8c93c299041631ddd2f1552663 to your computer and use it in GitHub Desktop.
Save oyamad/aca7ab8c93c299041631ddd2f1552663 to your computer and use it in GitHub Desktop.
LRSLib test failure
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"https://github.com/oyamad/LRSLib.jl/commit/cae37b5caddf3cd8855e000d575dcc03b51dce12"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false,
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" gmp v.6.1"
]
}
],
"source": [
"using LRSLib\n",
"using Polyhedra"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"From [Polyhedra.jl/test/board.jl](https://github.com/blegat/Polyhedra.jl/blob/master/test/board.jl):"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"A1 = -eye(Int, 9) # x >= 0;\n",
"b1 = zeros(Int, 9);\n",
"A2 = eye(Int, 9) # x <= 1;\n",
"b2 = ones(Int, 9);\n",
"A3 = zeros(Int, 9, 9);\n",
"b3 = 3 * ones(Int, 9);\n",
"i = 1;\n",
"for a = 1:3\n",
"for b = (a+1):3\n",
" for c = 1:3\n",
" for d = (c+1):3\n",
" ac = a + (c-1) * 3\n",
" ad = a + (d-1) * 3\n",
" bc = b + (c-1) * 3\n",
" bd = b + (d-1) * 3\n",
" A3[i, ac] = 1\n",
" A3[i, ad] = 1\n",
" A3[i, bc] = 1\n",
" A3[i, bd] = 1\n",
" i += 1\n",
" end\n",
" end\n",
"end\n",
"end;\n",
"A = [A1; A2; A3];\n",
"b = [b1; b2; b3];\n",
"ine = SimpleHRepresentation(A, b);"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"lib = LRSLibrary()\n",
"p = polyhedron(ine, lib);"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false,
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"LRSLib.LRSInequalityMatrix{9}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"m = LRSLib.getinem(p, :Fresh)\n",
"typeof(m)"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"true"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"gc_enable(false)"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false,
"scrolled": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"M = Matrix{Rational{BigInt}}(0,N + 1) = \n",
"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]\n",
"output' = Rational{BigInt}[1//1 3//4 3//4 3//4 3//4 3//4 3//4 3//4 3//4 3//4]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//2 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 1//1 0//1 1//2 1//1 0//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 0//1 1//2 1//1 0//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 1//1 0//1 1//2 1//1 1//2 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 1//2 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 0//1 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 0//1 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 0//1 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 1//2 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 0//1 1//1 1//2 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 0//1 1//1 1//2 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 0//1 1//1 1//2 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 0//1 1//1 0//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//2 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//2 1//2 0//1 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//2 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//2 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//2 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//2 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//2 1//2 1//2 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//1 1//2 0//1 1//1 1//1 1//2 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//1 1//2 0//1 1//1 1//1 0//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//2 0//1 1//1 1//1 0//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//2 0//1 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 1//1 0//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 1//1 0//1 0//1 1//1 1//2 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 0//1 1//1 1//2 1//2 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//1 0//1 0//1 1//1 1//1 1//2 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 0//1 0//1 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//2 0//1 1//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 1//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//1 0//1 1//2 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//1 0//1 1//2 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//1 0//1 0//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 0//1 0//1 0//1 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//2 1//1 0//1 1//2 1//1 1//1 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"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]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//1 1//1 1//2 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,1//1,1//1,1//2,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 1//1 1//1 1//2 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,1//1,1//1,1//2,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 1//1 1//1 1//2 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,1//1,0//1,1//1,1//2,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 1//1 0//1 1//1 1//2 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,0//1,1//1,1//2,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 0//1 1//1 1//2 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,1//1,1//2,1//1,1//2,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 1//1 1//2 1//1 1//2 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,1//1,1//1,1//2,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 1//1 1//1 1//2 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,1//1,1//1,1//2,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//1 1//1 1//2 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,1//1,1//1,1//2,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 1//1 1//1 1//2 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,1//1,1//2,1//1,1//2,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 1//1 1//2 1//1 1//2 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,1//2,1//2,1//2,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 1//2 1//2 1//2 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//1,1//1,1//2,1//2,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//1 1//1 1//2 1//2 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,1//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 1//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,0//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,1//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 1//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,1//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 1//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,1//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,1//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,1//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,0//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,1//1,1//1,1//2,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//1 1//1 1//2 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,0//1,1//1,1//1,1//1,1//2,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//1 1//1 1//2 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,1//1,1//2,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 1//1 1//2 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,1//1,1//1,1//2,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//1 1//1 1//2 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,1//1,1//1,1//2,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//1 1//1 1//2 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,1//1,1//1,1//2,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//1 1//1 1//2 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//2,1//1,1//1,1//2,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//2 1//1 1//1 1//2 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,0//1,1//1,1//1,1//1,1//2,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//1 1//1 1//2 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,1//1,1//1,1//2,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//1 1//1 1//2 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//2,1//1,1//1,1//2,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//2 1//1 1//1 1//2 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//1,1//1,0//1,1//2,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//1 1//1 0//1 1//2 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,0//1,1//1,1//1,0//1,1//2,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//1 0//1 1//2 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//1,1//1,1//2,1//2,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//1 1//1 1//2 1//2 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,1//2,1//2,1//1,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 1//2 1//2 1//1 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//1,1//2,1//2,1//1,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//1 1//2 1//2 1//1 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,1//1,0//1,1//2,1//1,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 1//1 0//1 1//2 1//1 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,0//1,1//2,1//1,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 0//1 1//2 1//1 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//1,1//2,0//1,1//1,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//1 1//2 0//1 1//1 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,0//1,0//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 0//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,0//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,0//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,0//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 0//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,0//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,0//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,0//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,0//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 0//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,0//1,1//1,1//2,0//1,1//1,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//2 0//1 1//1 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,0//1,1//2,1//1,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 0//1 1//2 1//1 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,0//1,0//1,1//1,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 0//1 0//1 1//1 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,1//2,0//1,1//1,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 1//2 0//1 1//1 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//2,1//1,1//2,1//1,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//2 1//1 1//2 1//1 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,1//1,1//2,1//1,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 1//1 1//2 1//1 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,0//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,0//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,1//1,1//2,1//1,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 1//1 1//2 1//1 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//2,1//1,1//2,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//2 1//1 1//2 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,0//1,1//2,1//1,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 0//1 1//2 1//1 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,0//1,1//2,1//1,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 0//1 1//2 1//1 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,1//2,1//2,1//1,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 1//2 1//2 1//1 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,1//2,1//2,1//1,1//1,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 1//2 1//2 1//1 1//1 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,0//1,1//1,1//2,1//1,1//1,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 0//1 1//1 1//2 1//1 1//1 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//2,1//2,1//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//2 1//2 1//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,1//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,1//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,1//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,1//2,1//2,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 1//2 1//2 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//2,1//2,1//1,1//1,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//2 1//2 1//1 1//1 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,1//2,1//2,1//1,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 1//2 1//2 1//1 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,1//2,1//2,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 1//2 1//2 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,1//2,0//1,1//1,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 1//2 0//1 1//1 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//2,1//2,0//1,1//1,1//2,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//2 1//2 0//1 1//1 1//2 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//2,1//2,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//2 1//2 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,1//2,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 1//2 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//2,0//1,1//2,1//1,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//2 0//1 1//2 1//1 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,0//1,1//2,1//1,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 0//1 1//2 1//1 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,0//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,0//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,0//1,1//2,1//1,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 0//1 1//2 1//1 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//2,0//1,0//1,1//1,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//2 0//1 0//1 1//1 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,1//2,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 1//2 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//2,1//1,0//1,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//2 1//1 0//1 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//2,0//1,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//2 0//1 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,0//1,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 0//1 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,0//1,1//1,1//2,1//2,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 0//1 1//1 1//2 1//2 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//2,0//1,1//1,1//2,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//2 0//1 1//1 1//2 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//2,0//1,1//1,1//2,0//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//2 0//1 1//1 1//2 0//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//2,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//2 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,1//2,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//2 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,1//2,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//2 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,1//2,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//2 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,1//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,1//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 1//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,1//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 1//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,1//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,1//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,1//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,1//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,1//1,1//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,1//1,1//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,1//1,1//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,1//1,1//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,1//1,1//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,1//1,1//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,1//1,1//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,1//1,1//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,1//1,1//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 1//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,0//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,0//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,0//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 0//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,0//1,1//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 0//1 1//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,0//1,1//2,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 0//1 1//2 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,0//1,1//2,1//1,0//1,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 0//1 1//2 1//1 0//1 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//2,0//1,1//2,1//1,1//2,1//1,1//2,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//2 0//1 1//2 1//1 1//2 1//1 1//2 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,0//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 0//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,1//1,0//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 1//1 0//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//1,1//2,1//1,0//1,1//1,1//2,1//2]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//1 1//2 1//1 0//1 1//1 1//2 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,0//1,1//1,0//1,1//2,1//2,1//2]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 1//1 0//1 1//2 1//2 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//1,0//1,1//1,0//1,1//1,1//2,1//2]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//1 0//1 1//1 0//1 1//1 1//2 1//2]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,0//1,1//1,0//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 1//1 0//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,1//1,0//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 0//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,0//1,1//1,0//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 1//1 0//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,1//1,0//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 1//1 0//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,1//1,0//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,1//1,0//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 0//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,0//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 0//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,1//1,0//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,1//1,0//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,1//1,0//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,1//1,0//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 1//1 0//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,0//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 0//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,1//1,0//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,1//1,0//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,1//1,0//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 0//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,1//1,0//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 1//1 0//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,1//1,1//2,1//1,0//1,1//1,1//2,0//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 1//1 1//2 1//1 0//1 1//1 1//2 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//2,1//1,0//1,1//2,1//1,0//1,1//1,1//2,0//1]\n",
"output' = Rational{BigInt}[1//1 1//2 1//1 0//1 1//2 1//1 0//1 1//1 1//2 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,1//1,0//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 1//1 0//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,1//1,1//1,0//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 1//1 1//1 0//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,1//1,1//1,0//1,0//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//1 1//1 0//1 0//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,1//1,1//1,0//1,1//1,0//1,0//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 1//1 1//1 0//1 1//1 0//1 0//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,1//1,0//1,1//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 1//1 0//1 1//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,1//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 1//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,1//1,0//1,0//1,1//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,0//1,0//1,1//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 0//1 0//1 1//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,0//1,0//1,1//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,0//1,0//1,1//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 0//1 0//1 1//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,1//1,0//1,1//1,0//1,1//1,0//1,0//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 1//1 0//1 1//1 0//1 1//1 0//1 0//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,1//1,1//1,0//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 1//1 1//1 0//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = Rational{BigInt}[1//1,0//1,0//1,1//1,0//1,1//1,0//1,1//1,0//1,1//1]\n",
"output' = Rational{BigInt}[1//1 0//1 0//1 1//1 0//1 1//1 0//1 1//1 0//1 1//1]\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"output = getsolution(m,col) = nothing\n",
"flag = getnextbasis(m) = true\n",
"output = getsolution(m,col) = noth
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment