Skip to content

Commit

Permalink
Removed the ability to enter uncertainties manually. Resolves #101.
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewJA committed Apr 7, 2015
1 parent caa4a0b commit 679f11f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions coffeequate/src/parse.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ define ["require"], (require) ->
else if CONSTANT_FLOAT_REGEX.test(string)
return new terminals.Constant(string, 1, "float")
else if VARIABLE_REGEX.test(string)
if string[0] == "σ"
return new terminals.Uncertainty(string[1..])
return new terminals.Variable(string)
else if SYMBOLIC_CONSTANT_REGEX.test(string)
return new terminals.SymbolicConstant(string[1..])
Expand Down

0 comments on commit 679f11f

Please sign in to comment.