I have the following folder structure:
- BaseDefs.v
- UsingBaseDefs.v
Here, BaseDefs.v
contains definitions that I want to use in UsingBaseDefs.v
. I tried to use the coqc BaseDefs.v
command from the terminal and then I tried to import the module inside of UsingBaseDefs.v
using:
Require Import BaseDefs.
This gives me the error
Cannot find a physical path bound to logical path BaseDefs
I am working inside of CoqIDE and from another thread (How do I import modules in Coq?) it seems as if this should work. How do I resolve this error and make the Import available ?
Edit: If I print the LoadPath using the Print LoadPath
command inside of UsingBaseDefs.v
I can see that BaseDefs is not listed here.