-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
exponential EVAL with option_case_compute #97
Comments
I guess there must have been some reason for having computeLib.lazyfy_thm there but I don't know what it is? You could try: computeLib.del_consts [optionSyntax.option_case_tm] followed by computeLib.add_funs [optionTheory.option_case_def] or computeLib.add_funs [optionTheory.option_case_compute] Both seem to avoid computing "x" twice. |
As I recall, it was also intended to prevent re-computation of Konrad. On Thu, Oct 25, 2012 at 1:15 PM, acjf3 notifications@github.com wrote:
|
I guess it all comes down to where the "do_lots_of_work" is located. Using optionTheory.option_case_def or optionSyntax.option_case_tm will give problems when you have something of the form: case x of Scott's eval_option_case seems to avoid that problem.Doesn't this issue relate to http://sourceforge.net/tracker/?func=detail&aid=601916&group_id=31790&atid=403400 which dates from 2002. |
Yes, that discussion on the issue tracker seems apropos. I suppose that case f1 ... fn ob = I already have some infrastructure set up for defining recognizers and Konrad. On Thu, Oct 25, 2012 at 2:30 PM, acjf3 notifications@github.com wrote:
|
So you'd have to automatically apply these "evaluation" rewrites to everything prior to definitions being added to "the_compset"? If you just add these "recognizers" rewrites directly then you are still left with the problem that each of the cases with 0-ary constructors will always evaluate. It's a shame that the arguments are the wrong way around in the first place. I guess it's a bit late now. Another option could be to automatically generate the "right" function at the same time and automatically apply the rewrite X_case f1 f2 ... fn D = eval_X_case D f1 f2 ... fn prior to adding stuff to the_compset. The rewrites for eval_X_case would be as Scott outlined, which should be more efficient than a (potentially long) sequence of if-then-else statements. This approach has the disadvantage that users could be left with instances of eval_X_case, which would be confusing, considering that they wouldn't pretty-print properly and other tool support wouldn't work. I suppose pretty-printing (and other) support could be added progressively, until the current version is made redundant. Is there any advantage to the current ordering? |
The pattern-match translation used by Define would have to be changed. Not The order of the args to a case-definition was motivated (I think) by the Konrad. On Thu, Oct 25, 2012 at 4:03 PM, acjf3 notifications@github.com wrote:
|
I see. I think supporting the alternative argument order is probably the right way to go, although it could involve a fair amount of work (incompatibility problems). The only other possibility that comes to mind is a version of set_skip that works for the last argument. The computeLib code is a bit of a mystery to me, so I don't really know how feasible that is... |
Someone really does need to get their head around |
One scary (but probably optional) change is to do away with bool_case constant because it is now identical to COND. This could be reversed, but having two constants with exactly the same type and semantics does seem silly. I think the parsing/pretty-printing behaviour can be made sensible even in the face of this unification. Prim_rec’s functions for defining case constants and proving case congruence theorems have been adjusted appropriately. This is relevant to Github issue #97.
If someone has the time to look at this, the stumbling block is now the pattern-matching analysis that is done inside TFL (and the parsing of case expressions). The build goes as far as |
Define calls Functional.mk_functional on functions with patterns. I will have a quick look tonight and let you know how I get on. Cheers, On Wed, Nov 14, 2012 at 5:44 PM, Michael Norrish
|
You will need to
to see the changes I’ve made (they’re on a separate branch). If you have outstanding uncommitted work in your repository, maybe make a fresh clone to do the work. Any commits and pushes you then make will go to the right place. |
Ramana, I have no idea what the |
Is ot0 not defined in the same file somewhere? I would guess it's On Thu, Nov 15, 2012 at 12:39 AM, Michael Norrish
|
Yeah, of course. But the calls are of the form
or similar and I'm worried that OpenTheory is expecting its case constants to have arguments ordered the old way |
This preliminary check-in doesn’t bring across all of the differences between Functional and Pmatch. On the assumption that the differences are important, I’ll patch Pmatch as necessary on this branch before merging back into master. Intention is to have this done before proceeding with work on features/case-const-argflip. Given that, this is progress of a sort with Github issue #97.
Things like using lazyfy of list_case_compute in EVAL are probably now wrong. Define and case-parsing are generating the right code for the new form of case constant. Pretty-printing is not working correctly yet. Progress with github issue #97.
This feature is basically done, bar the shouting. The remaining question is best answered by people that use It doesn’t seem like there’s a lot of point to switching the argument order if we don’t then use the opportunity gained to control evaluation of these case-constants, but I’m happy to be told how best that control should be achieved. |
Yes, the standard library has the arguments to option_case in the original On Sat, Nov 17, 2012 at 8:23 PM, Michael Norrish
|
"Should we do a set_skip or a lazyfy for case constants..." You just need
with
This means that the arguments are evaluated depending on the condition (they are both evaluated when the condition doesn't evaluate to T or F). This is what we want for case statements as well. For example:
will not evaluate Y and
will not evaluate X but
will evaluate X and Y. If you want to avoid evaluation in the last example then you would have
I wouldn't recommend this because we often want to do symbolic evaluation. Anyhow, lazify isn't needed at any point. |
Fix was to get it to use Prim_rec.define_case_constant, which just does the right thing. This is progress with github issue #97.
Such functions need to use sums internally, and the use made of sum_case in Defn.sml reasonably assumed the old order of arguments. This is progress with github issue #97.
…tants. Rather than code having to know that the constant is called “type_CASE” and that its definition is stored in “type_case_def”, use ML entrypoints in Prim_rec to abstract these details. This is progress with github issue #97.
This is progress with github issue #97.
This is progress with github issue #97.
…defines OK. This is progress with github issue #97.
…tants. This is progress with github issue #97.
This is progress with github issue #97.
It should now be possible to get an efficient handling of case constants by using |
Yes this will break OpenTheory stuff because the constant has flipped On Sun, Nov 18, 2012 at 7:23 AM, Michael Norrish
|
This is ongoing progress with really getting issue #97 resolved.
And so the saga continues. examples/theorem-prover now builds successfully. I’m hoping that miniml will too now that there’s a pair_case_def back in pairTheory. This is work trying to finalise github issue #97.
optionScript adds the following to the compset:
For programs like:
case do_lots_of_work of
| NONE => ...
| SOME answer => ...
do_lots_of_work is the x above, and is duplicated. For a recursive function where the recursion is in the do_lots_of_work, this leads to exponential blowup of EVAL. I'm not sure what the right general solution is, but for now I've re-written my functions to use this alternate option_case instead.
val eval_option_case_def = Define
(eval_option_case NONE = λf1 f2. f1) ∧ (eval_option_case (SOME x) = λf1 f2. f2 x)
;val eval_option_case_thm = Q.store_thm ("eval_option_case_thm",
!opt f1 f2. option_case f1 f2 opt = eval_option_case opt f1 f2
,rw [] >>
cases_on
opt
>>rw [eval_option_case_def]);
val eval_option_case_cong = Q.store_thm ("eval_option_case_cong",
∀M M' u f. (M = M') ∧ ((M' = NONE) ⇒ (u = u')) ∧ (∀x. (M' = SOME x) ⇒ (f x = f' x)) ⇒ (eval_option_case M u f = eval_option_case M' u' f')
,metis_tac [optionTheory.option_case_cong, eval_option_case_thm]);
DefnBase.add_cong eval_option_case_cong;
val _ = set_skip the_compset
eval_option_case
(SOME 1);The text was updated successfully, but these errors were encountered: