flask-llama / llama.cpp /grammars /arithmetic.gbnf
YZ-TAN's picture
Upload 2821 files
5a29263 verified
raw
history blame
183 Bytes
root ::= (expr "=" ws term "\n")+
expr ::= term ([-+*/] term)*
term ::= ident | num | "(" ws expr ")" ws
ident ::= [a-z] [a-z0-9_]* ws
num ::= [0-9]+ ws
ws ::= [ \t\n]*