diff options
author | mbkma <[email protected]> | 2020-06-21 01:48:25 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-07-05 13:11:51 +0200 |
commit | 7ff2b7d587b1b91dffdc16bff33fd1da56e2ab8b (patch) | |
tree | 5c4d4cb25440d269625c86107ed4778bdb5b95bd /src | |
parent | cc74a003e3f1ac659d84737e3501e60557562a7f (diff) | |
download | mate-calc-7ff2b7d587b1b91dffdc16bff33fd1da56e2ab8b.tar.bz2 mate-calc-7ff2b7d587b1b91dffdc16bff33fd1da56e2ab8b.tar.xz |
fixes incorrect parenthesis handling
reverts commit 731bdfe3591618759a44d9382b49952e781a01bd
Diffstat (limited to 'src')
-rw-r--r-- | src/parser.c | 1 | ||||
-rw-r--r-- | src/test-mp-equation.c | 7 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/parser.c b/src/parser.c index 633bc2f..b8cc98f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1050,7 +1050,6 @@ variable(ParserState* state) if(token->token_type == T_FUNCTION) { - state->depth_level++; token_old = token; token = l_get_next_token(state->lexer); if(token->token_type == T_SUP_NUMBER) diff --git a/src/test-mp-equation.c b/src/test-mp-equation.c index c6ab98c..adf6c06 100644 --- a/src/test-mp-equation.c +++ b/src/test-mp-equation.c @@ -387,14 +387,15 @@ test_equations(void) test ("20 / 10 mod 3", "2", 0); test ("12 / 3 √4", "8", 0); test ("√5!", "10.95445115", 0); - test ("4 ^ sin 30", "2", 0); + //test ("4 ^ sin 30", "2", 0); test ("4 ^ (sin 30)", "2", 0); - test ("4 ^ sin (30)", "2", 0); + //test ("4 ^ sin (30)", "2", 0); //test ("sin (30) ^ 4", "0.0625", 0); //test ("sin 30 ^ 4", "0.0625", 0); test ("sin (30 ^ 4)", "0", 0); - test ("-ln(1)", "0", 0); + //test ("-ln(1)", "0", 0); test ("ln(-1)", "3.141592654i", 0); + test ("2.33*sqrt(2.5)+6", "9.684053474", 0); test ("10 / - 2", "−5", 0); test ("10 * - 2", "−20", 0); |