fix: a star in docs

This commit is contained in:
zsq259
2024-06-25 15:51:24 +08:00
parent 1b3eba4657
commit 4c3e84486d
173 changed files with 10755 additions and 6 deletions

View File

@ -0,0 +1,20 @@
class: "EvalTest"
success: "PASS"
failure: "NO PASS"
# Python statements initializing variables for the test below.
preamble: """
import logic
A = logic.Expr('A')
B = logic.Expr('B')
C = logic.Expr('C')
D = logic.Expr('D')
expr = logicPlan.atLeastOne([A, B, C, D])
"""
# A python expression to be evaluated. This expression must return the
# same result for the student and instructor's code.
test: "logic.is_valid_cnf(expr)"