我在证明期间处于需要对列表长度进行案例分析的情况l
。
- 当
length l < 2
它是一种情况(其中二进制操作+
不适用) - 当
length l >= 2
它是另一种情况时(适用二进制操作)
我如何使用destruct
或其他一些策略来做到这一点,并获得两种情况,即真假?
我试过:
destruct (length l < 2).
destruct (lt (length l) 2).
remember (length l < 2).
destruct HeqP.
但没有一个奏效。