From d3678f758442d1a4e8dd074a0f8ee51c5bf7b954 Mon Sep 17 00:00:00 2001 From: trevor_hansen Date: Tue, 12 Jul 2011 12:31:42 +0000 Subject: [PATCH] Improvement. Maybe. Left recursion is supposed to be better. i.e. to use less stack space. When I measured it just now it used the same amount.... git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1372 e59a4935-1847-0410-ae03-e826735625c1 --- src/parser/smt2.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/smt2.y b/src/parser/smt2.y index b71c603..8c6f465 100644 --- a/src/parser/smt2.y +++ b/src/parser/smt2.y @@ -203,7 +203,7 @@ cmd: commands END ; -commands: cmdi commands +commands: commands cmdi | cmdi {} ; -- 2.47.3