mirror of
https://github.com/godotengine/godot-benchmarks.git
synced 2026-01-04 06:10:04 +03:00
* Add benchmark for expression There are 3 phases: generate strings, parsing, executing. The string generation phase is as follows: Only the 4 basic math (two argument aka binary) operations are used, it starts with a pool of nodes (initially a node is just a variable), and randomly combines 2 nodes until only one node remains. Parsing and executing are straightforward uses of the Expression class. * Split out expression generator to Python script.