I fixed the merge conflicts with my pull request and then ran the git commands. It didn't fix both of the exceptions though.
The path to this file is: mathpiperide\src\library_apps\mathpiper4\src\org\mathpiper\scripts4\mpreduce\mpreduce.mpws
It occurs with two different examples in the file, the first one is with the Solve in_prompts:
Solve([2 * _x + _y == 5, -_x + _y == 2], [_x, _y]) ~> [_x == 1,_y == 3]
And the exception read:
***EXCEPTION[ Error encountered during parsing: Error parsing expression near token ***( Error )***. ]EXCEPTION*** , Source: STRING:USER, Line: 3, Start Index: 6
***EXCEPTION[ Error encountered during parsing: Error parsing expression near token ***( Error )***. ]EXCEPTION*** , Source: STRING:USER, Line: 3, Start Index: 6
at org.mathpiper.test.TestSuite.evaluateTestScript(TestSuite.java:418)
at org.mathpiper.test.TestSuite.runSingleTest(TestSuite.java:288)
at org.mathpiper.test.TestSuite.testPerform(TestSuite.java:179)
at org.mathpiper.test.TestSuite.testPerform(TestSuite.java:108)
at org.mathpiper.test.TestSuite.main(TestSuite.java:568)
I think updating my git repo fixed the second error I was getting in the example, but the first one is still not working but it may be an issue with the solve procedure and not necessarily with the ~> function because when I enter it into the graphic console it also shows the same exception.
In> Solve([2 * _x + _y == 5, -_x + _y == 2], [_x, _y])
Result: Exception
Exception: Error encountered during parsing: Error parsing expression near token ***( Error )***. Starting at index 6.
Thanks!