-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjucsrc.default
52 lines (42 loc) · 1.79 KB
/
jucsrc.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
############################################################################
# Curry->Julia compiler configuration file
#
# The syntax of this file is
#
# property=value\n
#
# Lines starting with '#' are comments.
#
############################################################################
# Default parameters that are always passed as initial parameters to KiCS2
# (e.g., ":set +time :set +interactive :set fs")
defaultparams=
# Define path for searching modules in addition to standard libraries:
# (this path is placed in front of the standard library path)
libraries=
# Allow Curry extensions (currently: function patterns and records)
# (values: yes | no):
curryextensions=yes
# Show warnings for non-trivial overlapping rules (values: yes | no)
warnoverlapping=yes
# System command to edit the source file of a Curry program
# (if not defined, the value of the environment variable EDITOR is used)
editcommand=
# System command to show the source file of a Curry program
# (if not defined, the value of the environment variable PAGER is used)
showcommand=
# System command to view (Graphviz) dot graphs that come from stdin
# (e.g., used in CPM, Curry browser, erd2curry tools)
dotviewcommand=dot -Tpdf > /tmp/dotxxx.pdf && evince /tmp/dotxxx.pdf
# Optimize Boolean equalities (==): transform them into binding
# constraints (=:=) whenever they must be evaluated only to True.
# possible values:
# no (do not optimize)
# fast (optimize w.r.t. standard Prelude)
# full (perform full program analysis to optimize more occurrences)
bindingoptimization=fast
# Should the auxiliary files generated for the main expression be kept?
# (values: yes | no )
# Usually, they are deleted, i.e., "yes" might be useful for debugging
keepfiles=no
############################################################################