currypp packaged
parents
.gitignore
0 → 100644
README.txt
0 → 100644
docs/README.txt
0 → 100644
docs/diagram.pdf
0 → 100644
File added
docs/manual.tex
0 → 100644
This diff is collapsed.
docs/sqlsyntax.tex
0 → 100644
package.json
0 → 100644
{ | ||
"name": "currypp", | ||
"version": "0.3.0", | ||
"author": "Michael Hanus <mh@informatik.uni-kiel.de>", | ||
"synopsis": "The standard preprocessor of Curry", | ||
"category": [ "Analysis" ], | ||
"dependencies": { | ||
"cass-analysis": ">= 0.0.1", | ||
"cass" : ">= 0.0.1", | ||
"currycheck" : ">= 1.0.0", | ||
"verify" : ">= 0.0.1" | ||
}, | ||
"sourceDirs": [ "src", "src/IntegratedCode", "src/IntegratedCode/Parser", | ||
"src/IntegratedCode/Parser/ML", | ||
"src/IntegratedCode/Parser/SQL", | ||
"src/SequentialRules", "src/DefaultRules", | ||
"src/ContractWrapper" | ||
], | ||
"exportedModules": [ "Main" ], | ||
"executable": { | ||
"name": "curry-pp", | ||
"main": "Main" | ||
}, | ||
"testsuite": [ | ||
{ "src-dir": "src/IntegratedCode/Examples", | ||
"modules": [ "testFormat", "testHtml", "testRegExps" ] | ||
}, | ||
{ "src-dir": "src/DefaultRules/Examples", | ||
"options": "-m40", | ||
"modules": [ "BreakWhere", "BubbleSort", "ColorMap", "DutchFlag", | ||
"FixInt", "FloatString", "Guards", "ListFuns", "Lookup", | ||
"Nim", "ParOr", "Queens", "Rev2", "WorldCup", | ||
"ParOrDet", "BubbleSortDet", "DutchFlagDet" ] | ||
}, | ||
{ "src-dir": "src/ContractWrapper/Examples", | ||
"options": "--nospec --nodet --deftype=Int", | ||
"modules": [ "BubbleSort", "BubbleSortFormat", "Coin", | ||
"FibInfinite", "Quicksort" ] | ||
} | ||
], | ||
"source": { | ||
"git": "https://git.ps.informatik.uni-kiel.de/curry-packages/currypp.git", | ||
"tag": "$version" | ||
} | ||
} |
src/ContractWrapper/README
0 → 100644