如果我做类似的事情 -From mathcomp Require Import ssreflect.
它会给我以下错误。
Error: Cannot load mathcomp.ssreflect.ssreflect: no physical path bound to
mathcomp.ssreflect
但如果我这样做 -Require Import ssreflect.
它编译得很好。这可能是因为我安装了 ssreflect 但不完全是我想要的方式。
但问题是我想要第一种工作方式,因为我有很多这样编写的程序,而且每一个都改变行似乎不合逻辑。
这就是我的 .emacs 文件中的内容 - (我想也许我需要添加任何东西,比如 mathcomp/ssreflect 的路径。我不知道)
(load "~/.emacs.d/lisp/PG/generic/proof-site")
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(coq-prog-name "/usr/local/Cellar/coq/8.10.2_1/bin/coqtop")
'(package-selected-packages (quote (company-coq)))
'(proof-three-window-enable t))
;; Load company-coq when opening Coq files
(add-hook 'coq-mode-hook #'company-coq-mode)
如果有人可以帮助我开始From mathcomp Require Import ssreflect.
工作,那对我真的很有帮助。