Esempio n. 1
0
        public static ApplySuffix GetTacticAppExpr(ProofState ps, Expression expr)
        {
            var finder = new TacticAppExprFinder(ps);

            finder.CloneExpr(expr);
            return(finder._aps);
        }
Esempio n. 2
0
        public static ApplySuffix GetTacticAppExpr(ProofState ps, Statement stmt)
        {
            var finder = new TacticAppExprFinder(ps);

            finder.CloneStmt(stmt);
            return(finder._aps);
        }