首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏零域Blog

    「SF-LC」16 Auto

    auto - proof search Ltac - automated forward reasoning (hypothesis matching machinery) eauto, eapply - deferred instantiation of existentials Ltac macro Ltac inv H := inversion H; subst; clear H. (** later 宏: Ltac rwinv H1 H2 := rewrite H1 in H2; inv H2. (** later in the proof... **) rwinv H H2. match goal 调用宏 Ltac find_rwinv := match goal with H1: ? 可以看到最后只剩这种改写形式… 我们也把他们自动化了: Ltac find_eqn := match goal with H1: ∀x, ?P x → ?L = ?R, H2: ?

    48210编辑于 2022-03-14
  • 来自专栏零域Blog

    「SF-PLF」1 Equiv

    solve_by_inverts in LTac. (used to generate proof) LTac doesn’t have termination check.

    67920编辑于 2022-03-02
  • 来自专栏零域Blog

    「SF-PLF」5 Smallstep

    Ltac solve_by_inverts n Ltac solve_by_inverts n := match goal with | H : ?

    78520编辑于 2022-03-02
  • 深入探索YashanDB的商业智能(BI)能力

    YashanDB支持LTAC(面向事务分析的列存表)和LSC(大规模存储列存表)两种列存表类型,分别满足实时分析和海量数据分析需求,助力BI系统应对实时查询与离线分析融合的挑战。

    20010编辑于 2025-10-08
  • 来自专栏零域Blog

    「SF-LC」12 Imp

    Ltac: scripting language for tactics (good for more sophisticated proof engineering) OCaml tactic scripting

    2K20编辑于 2022-03-14
领券