Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
curry-packages
currycheck
Commits
24e4e7ef
Commit
24e4e7ef
authored
Jul 06, 2021
by
Michael Hanus
Browse files
Add `allvalues` as required package for compilation
parent
3f3793a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/CC/Helpers.curry
View file @
24e4e7ef
...
...
@@ -21,8 +21,8 @@ ccLoadPath = do
let ecurrypath' = case ecurrypath of ':':_ -> '.':ecurrypath
_ -> ecurrypath
return $ intercalate ":"
(if null ecurrypath' then ccExecLoadPath
else ecurrypath' : ccExecLoadPath)
(if null ecurrypath' then ccExecLoadPath
else ecurrypath' : ccExecLoadPath)
--- Computes the additional load path for executing the
--- generated program that executes all checks.
...
...
@@ -32,6 +32,6 @@ ccExecLoadPath =
where
isRequiredPackage dir =
any (`isInfixOf` dir)
[ "ansi-terminal", "directory", "distribution"
, "easycheck"
, "filepath", "process", "profiling", "random"
[
"allvalues",
"ansi-terminal", "directory", "distribution"
,
"easycheck",
"filepath", "process", "profiling", "random"
, "searchtree", "setfunctions", "time" ]
src/CurryCheck.curry
View file @
24e4e7ef
...
...
@@ -66,7 +66,7 @@ ccBanner :: String
ccBanner = unlines [bannerLine,bannerText,bannerLine]
where
bannerText = "CurryCheck: a tool for testing Curry programs (Version " ++
packageVersion ++ " of 0
5
/07/2021)"
packageVersion ++ " of 0
6
/07/2021)"
bannerLine = take (length bannerText) (repeat '-')
-- Help text
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment