I am writing my first own Coq file but I am experiencing trouble in exporting another user defined file (defined by the book Software Foundations).
The issue is my current Coq file has path Coq/NWA.v
and the file I want to import has path Coq/SoftwareFoundations/lf/Rel.v
. I tried the following syntaxes:
From Coq/SoftwareFoundations/lf Require Import Rel.v
&
From Coq.SoftwareFoundations.lf Require Import Rel.v
&
From ./../SoftwareFoundations/lf Require Import Rel.v
all of which give a syntax error. How can I import the Rel.v file?