Skip to content

Commit 02f20ad

Browse files
committed
fix
1 parent dbed93f commit 02f20ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/proof/lean/lean_post_processor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ void LeanProofPostprocess::process(std::shared_ptr<ProofNode> pf)
944944
Node res = pf->getResult();
945945
const std::vector<std::shared_ptr<ProofNode>>& childrenPfs =
946946
scopePf->getChildren();
947-
Assert(childrenPfs().size() == 1);
947+
Assert(childrenPfs.size() == 1);
948948
cdp.addProof(childrenPfs[0]);
949949
const std::vector<Node> args = scopePf->getArguments();
950950
std::vector<Node> newArgs{args[0], args[1], args[2]};

0 commit comments

Comments
 (0)