Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
with a very liberal "just append stuff till the executable stops complaining" approach toward making an
edits
file, I've almost gotten anexamples/bytestring
together.I used a
git submodule add
to get thebytestring
source in here.Current bottleneck: "
GHC.Prim.Notations is not a module
" https://github.com/quinn-dougherty/hs-to-coq/blob/a69ccb3c1f23db22ac0ce6a99b9317ddfc097280/examples/bytestring/lib/Data/ByteString/Internal.v#L20 -- It doesn't appear to me thaths-to-coq
is generatingNotation
modules inbase
, so I'm not sure what's going on. I get this error both when Istack exec hs-to-coq --
(in the standardcommon.mk
) and when I runnix
ifiedresult/bin/hs-to-coq
.the
hs-to-coq
execution seems to be going great! it's just outputting stuff that can't becoqc
'd, or isn't successfullycoqc
'd according to theMakefile
(which I wrote based onexamples/containers/Makefile
).I super appreciate it if anyone has time to show me what I'm doing wrong. Also, totally open minded if you think it's not worth having this in
examples
dir.