File size: 1,944 Bytes
389d072 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
from visma.io.tokenize import tokenizer, getLHSandRHS, removeSpaces
from visma.io.checks import checkTypes
from visma.discreteMaths.statistics import sampleSpace
# TODO: Categorize all test cases into COVERAGE and BASIS
def quickTest(inp, operation, wrtVar=None):
if operation.__name__ not in ['ArithemeticMean', 'Mode', 'Median']:
if (inp.count(';') == 2):
afterSplit = inp.split(';')
eqStr1 = afterSplit[0]
eqStr2 = afterSplit[1]
eqStr3 = afterSplit[2]
tokens = [tokenizer(eqStr1), tokenizer(eqStr2), tokenizer(eqStr3)]
token_string, _, _ = operation(tokens[0], tokens[1], tokens[2], wrtVar)
return removeSpaces(token_string)
elif (inp.count(';') == 1):
afterSplit = inp.split(';')
eqStr1 = afterSplit[0]
eqStr2 = afterSplit[1]
tokens = [tokenizer(eqStr1), tokenizer(eqStr2)]
_, _, token_string, _, _ = operation(tokens[0], tokens[1])
return removeSpaces(token_string)
else:
lhs, rhs = getLHSandRHS(tokenizer(inp))
_, inpType = checkTypes(lhs, rhs)
if inpType == "equation":
if wrtVar is not None:
_, _, _, token_string, _, _ = operation(lhs, rhs, wrtVar)
else:
_, _, _, token_string, _, _ = operation(lhs, rhs)
elif inpType == "expression":
if wrtVar is not None:
_, _, token_string, _, _ = operation(lhs, wrtVar)
else:
_, _, token_string, _, _ = operation(lhs)
else:
sampleSpaceObject = sampleSpace(inp)
token_string, _, _ = operation(sampleSpaceObject)
output = removeSpaces(token_string)
return output
def getTokens(eqString):
tokens = tokenizer(eqString)
if len(tokens) == 1:
tokens = tokens[0]
return tokens
|