Initialize evaluation protocols and examples; Implement one kind of eval; Update requirements

This commit is contained in:
Timothyxxx
2023-12-12 18:12:37 +08:00
parent 2ca36109b5
commit a37f8a39e0
3 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
from .table import compare_table
eval_funcs = {
"compare_table(expected, actual)": compare_table
}