Rewriting hypothesis with a more concrete expression

狂风中的少年 提交于 2019-12-12 04:30:53

问题


Let's say these are my current premises and goals:

  IHl' : forall l' : list A, In a l'' \/ In a l' -> In a (l'' ++ l')
  l' : list A
  ============================
   ....

Now, I want the hypothesis to get transformed like this:

  IHl' : In a l'' \/ In a l' -> In a (l'' ++ l')
  l' : list A
  ============================
   ....

So, basically I instantiate IHl' with l'. Is there any tactic which does this ? Rewriting or even introducing a new specialized hypothesis should do.


回答1:


Just to leave the shortest answer for future ref: specialize IHl' with l'.

I highly recommend you have a look to @Anton's comment anyway.



来源:https://stackoverflow.com/questions/43332924/rewriting-hypothesis-with-a-more-concrete-expression

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!