Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mat17892
/
iris
like
0
Runtime error
App
Files
Files
Community
b664585
iris
/
llama.cpp
/
grammars
/
arithmetic.gbnf
Mat17892
llamacpp
b664585
verified
23 days ago
raw
Copy download link
history
blame
Safe
177 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]*