伊莎贝尔的阶级义务证明是蓝色的

时间:2016-02-23 22:03:24

标签: isabelle

在伊莎贝尔我有以下文件

theory Scratch
imports Main 
begin

class named =
  fixes getName :: "'a ⇒ string"

class node = named

datatype Node = node string

fun getName_Node :: "Node ⇒ string" where
  "getName_Node (node str) = str"

instantiation Node :: node
begin
instance proof
qed
end
end

零件'实例'带有蓝线下划线。当我将诅咒悬停在所提供的信息上时:

Auto solve_direct: The current goal can be solved directly with
  Scratch.class.Scratch.node.of_class.intro: OFCLASS(?'a, node_class)

我可以做些什么来防止'实例'加下划线?

1 个答案:

答案 0 :(得分:2)

这仅仅是系统的提示,可以安全地忽略。通常,看到你要证明的命题已经存在于某个地方是有帮助的。

尽管如此,要禁用,请转到jEdit"插件"菜单,然后选择"插件选项"。在那里,去#Is; Isabelle / General"树中的项目。你会看到一堆选项。在"自动尝试的工具"部分中,禁用" Auto Solve Direct"。

相关问题