Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/ruby-on-rails-4/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Coq 什么是GroupScope?_Coq_Theorem Proving_Ssreflect - Fatal编程技术网

Coq 什么是GroupScope?

Coq 什么是GroupScope?,coq,theorem-proving,ssreflect,Coq,Theorem Proving,Ssreflect,在ssreflect中的所有coq代码中都有以下语句 Import GroupScope. 什么是GroupScope?如果它是另一个文件,我可以从哪里下载?GroupScope是在库的模块中定义的模块(以前是SSR的一部分)。其定义如下: Module GroupScope. Open Scope group_scope. End GroupScope. 因此,导入GroupScope会使groupu scope中的所有符号都可用于当前文件,但有一点不同,如源代码中所述: 可以导入此模块以

在ssreflect中的所有coq代码中都有以下语句

Import GroupScope.

什么是
GroupScope
?如果它是另一个文件,我可以从哪里下载?

GroupScope
是在库的模块中定义的模块(以前是SSR的一部分)。其定义如下:

Module GroupScope.
Open Scope group_scope.
End GroupScope.
因此,导入
GroupScope
会使
groupu scope
中的所有符号都可用于当前文件,但有一点不同,如源代码中所述:

可以导入此模块以打开组元素的作用域 在本地对文件执行操作,而不向该文件的客户机公开(就像Open那样)