-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Round of fixes for missing EOF start rules.
- Loading branch information
Showing
119 changed files
with
128 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (atom (variable a))) (relop =) (expression (expression (expression (atom (scientific 234))) ^ (expression (atom (scientific 4.23)))) / (expression (atom (scientific 345))))) | ||
(file_ (equation (expression (atom (variable a))) (relop =) (expression (expression (expression (atom (scientific 234))) ^ (expression (atom (scientific 4.23)))) / (expression (atom (scientific 345))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (atom (variable a))) (relop =) (expression (expression ( (expression (expression (atom (scientific 234))) ^ (expression (atom (scientific 4.23)))) )) / (expression (atom (scientific 345))))) | ||
(file_ (equation (expression (atom (variable a))) (relop =) (expression (expression ( (expression (expression (atom (scientific 234))) ^ (expression (atom (scientific 4.23)))) )) / (expression (atom (scientific 345))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (atom (variable a))) (relop =) (expression (expression (atom (scientific 234))) ^ (expression ( (expression (expression (atom (scientific 4.23))) / (expression (atom (scientific 345)))) )))) | ||
(file_ (equation (expression (atom (variable a))) (relop =) (expression (expression (atom (scientific 234))) ^ (expression ( (expression (expression (atom (scientific 4.23))) / (expression (atom (scientific 345)))) )))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (expression (atom (variable z))) ^ (expression (atom (scientific 2)))) (relop =) (expression (expression (expression (atom (variable a))) ^ (expression (atom (scientific 2)))) + (expression (expression (atom (variable b))) ^ (expression (atom (scientific 2)))))) | ||
(file_ (equation (expression (expression (atom (variable z))) ^ (expression (atom (scientific 2)))) (relop =) (expression (expression (expression (atom (variable a))) ^ (expression (atom (scientific 2)))) + (expression (expression (atom (variable b))) ^ (expression (atom (scientific 2)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
grammar brainflak; | ||
|
||
file_ | ||
: statement+ | ||
: statement+ EOF | ||
; | ||
|
||
statement | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
grammar brainfuck; | ||
|
||
file_ | ||
: statement* | ||
: statement* EOF | ||
; | ||
|
||
statement | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable A)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (constant pi)))) * (powExpression (signedAtom (atom (variable r))) ^ (signedAtom (atom (scientific 2))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable A)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (constant pi)))) * (powExpression (signedAtom (atom (variable r))) ^ (signedAtom (atom (scientific 2)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable ee)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (constant e))) ^ (signedAtom (atom (scientific 12e17))))) - (multiplyingExpression (powExpression (signedAtom (atom (scientific 15E12.3))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable ee)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (constant e))) ^ (signedAtom (atom (scientific 12e17))))) - (multiplyingExpression (powExpression (signedAtom (atom (scientific 15E12.3)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom - (signedAtom (atom (scientific 1))))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (constant e))) ^ (signedAtom (atom (constant i)))) * (powExpression (signedAtom (atom (constant pi))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom - (signedAtom (atom (scientific 1))))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (constant e))) ^ (signedAtom (atom (constant i)))) * (powExpression (signedAtom (atom (constant pi)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 12))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 12)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable y)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 12.3))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable y)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 12.3)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable z)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 12.3e13))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable z)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 12.3e13)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 12.3e13.2))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 12.3e13.2)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom - (signedAtom (atom (scientific 12.3e-13.2)))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom - (signedAtom (atom (scientific 12.3e-13.2))))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom - (signedAtom (atom (scientific 12.3E-13.2)))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom - (signedAtom (atom (scientific 12.3E-13.2))))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable y)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x))) ^ (signedAtom (atom (scientific 1))))) + (multiplyingExpression (powExpression (signedAtom (atom (scientific 2))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable y)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x))) ^ (signedAtom (atom (scientific 1))))) + (multiplyingExpression (powExpression (signedAtom (atom (scientific 2)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable y)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x))) ^ (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 1))))) + (multiplyingExpression (powExpression (signedAtom (atom (scientific 2)))))) ))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable y)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x))) ^ (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 1))))) + (multiplyingExpression (powExpression (signedAtom (atom (scientific 2)))))) )))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 3.14))) ^ (signedAtom (atom (scientific 7))) ^ (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (func_ (funcname cos) ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable y)))))) )))))) ))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 3.14))) ^ (signedAtom (atom (scientific 7))) ^ (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (func_ (funcname cos) ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable y)))))) )))))) )))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 234))) ^ (signedAtom (atom (scientific 4.23)))) / (powExpression (signedAtom (atom (scientific 345)))))) ))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 234))) ^ (signedAtom (atom (scientific 4.23)))) / (powExpression (signedAtom (atom (scientific 345)))))) )))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 123))))) + (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 234))) ^ (signedAtom (atom (scientific 4.23)))) / (powExpression (signedAtom (atom (scientific 345)))))) )))) * (powExpression (signedAtom (atom (scientific 456789)))))) ))))) - (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 345)))) / (powExpression (signedAtom (atom (scientific 567)))))) )))) * (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 7))) ^ (signedAtom (atom (scientific 14.23)))))) )))))) ))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 123))))) + (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 234))) ^ (signedAtom (atom (scientific 4.23)))) / (powExpression (signedAtom (atom (scientific 345)))))) )))) * (powExpression (signedAtom (atom (scientific 456789)))))) ))))) - (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 345)))) / (powExpression (signedAtom (atom (scientific 567)))))) )))) * (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 7))) ^ (signedAtom (atom (scientific 14.23)))))) )))))) )))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (func_ (funcname sin) ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) ))) ^ (signedAtom (atom (scientific 2)))))) ))))) + (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (func_ (funcname cos) ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) ))) ^ (signedAtom (atom (scientific 2)))))) )))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 1))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (func_ (funcname sin) ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) ))) ^ (signedAtom (atom (scientific 2)))))) ))))) + (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (func_ (funcname cos) ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) ))) ^ (signedAtom (atom (scientific 2)))))) )))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (scientific 1)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom - (signedAtom (atom (variable b)))))) + (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable b))) ^ (signedAtom (atom (scientific 2)))))) ))))) - (multiplyingExpression (powExpression (signedAtom (atom (scientific 4)))) * (powExpression (signedAtom (atom (variable a)))) * (powExpression (signedAtom (atom (variable c)))))) ))) ^ (signedAtom (atom (scientific 0.50)))))) )))) / (powExpression (signedAtom (atom (scientific 4)))) * (powExpression (signedAtom (atom (variable a)))) * (powExpression (signedAtom (atom (variable c))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (atom (variable x)))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom - (signedAtom (atom (variable b)))))) + (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable b))) ^ (signedAtom (atom (scientific 2)))))) ))))) - (multiplyingExpression (powExpression (signedAtom (atom (scientific 4)))) * (powExpression (signedAtom (atom (variable a)))) * (powExpression (signedAtom (atom (variable c)))))) ))) ^ (signedAtom (atom (scientific 0.50)))))) )))) / (powExpression (signedAtom (atom (scientific 4)))) * (powExpression (signedAtom (atom (variable a)))) * (powExpression (signedAtom (atom (variable c)))))) <EOF>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (func_ (funcname sin) ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a1)))))) )))) / (powExpression (signedAtom (func_ (funcname sin) ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a2)))))) )))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (variable v1)))) / (powExpression (signedAtom (atom (variable v2))))))) | ||
(equation (expression (multiplyingExpression (powExpression (signedAtom (func_ (funcname sin) ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a1)))))) )))) / (powExpression (signedAtom (func_ (funcname sin) ( (expression (multiplyingExpression (powExpression (signedAtom (atom (variable a2)))))) )))))) (relop =) (expression (multiplyingExpression (powExpression (signedAtom (atom (variable v1)))) / (powExpression (signedAtom (atom (variable v2)))))) <EOF>) |
Oops, something went wrong.