author | blanchet |
Thu, 14 Apr 2011 11:24:04 +0200 | |
changeset 42340 | 4e4f0665e5be |
parent 42197 | 5f311600ba26 |
child 42392 | 0045b85101c9 |
permissions | -rw-r--r-- |
41542 | 1 |
""" |
2 |
Test configuration descriptions for mira. |
|
3 |
""" |
|
4 |
||
5 |
import os |
|
6 |
from os import path |
|
7 |
from glob import glob |
|
8 |
import subprocess |
|
9 |
import re |
|
10 |
||
11 |
import util |
|
12 |
||
42192 | 13 |
from mira import schedule |
14 |
from mira.environment import scheduler |
|
15 |
||
41542 | 16 |
|
17 |
# build and evaluation tools |
|
18 |
||
42113 | 19 |
def prepare_isabelle_repository(loc_isabelle, loc_contrib, loc_dependency_heaps, parallelism = True, more_settings=''): |
41542 | 20 |
|
21 |
loc_contrib = path.expanduser(loc_contrib) |
|
22 |
if not path.exists(loc_contrib): |
|
23 |
raise IOError('Bad file: %s' % loc_contrib) |
|
24 |
subprocess.check_call(['ln', '-s', loc_contrib, '%s/contrib' % loc_isabelle]) |
|
25 |
||
26 |
contributed_components = path.join(loc_isabelle, 'Admin', 'contributed_components') |
|
27 |
if path.exists(contributed_components): |
|
28 |
components = [] |
|
29 |
for component in util.readfile_lines(contributed_components): |
|
30 |
loc_component = path.join(loc_isabelle, component) |
|
31 |
if path.exists(loc_component): |
|
32 |
components.append(loc_component) |
|
33 |
writer = open(path.join(loc_isabelle, 'etc', 'components'), 'a') |
|
34 |
for component in components: |
|
35 |
writer.write(component + '\n') |
|
36 |
writer.close() |
|
37 |
||
38 |
if loc_dependency_heaps: |
|
39 |
isabelle_path = loc_dependency_heaps + '/$ISABELLE_IDENTIFIER:$ISABELLE_OUTPUT' |
|
40 |
else: |
|
41 |
isabelle_path = '$ISABELLE_OUTPUT' |
|
42 |
||
43 |
if parallelism: |
|
44 |
parallelism_options = '-M max' |
|
45 |
else: |
|
46 |
parallelism_options = '-M 1 -q 0' |
|
47 |
||
48 |
extra_settings = ''' |
|
49 |
ISABELLE_HOME_USER="$ISABELLE_HOME/home_user" |
|
50 |
ISABELLE_OUTPUT="$ISABELLE_HOME/heaps" |
|
51 |
ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info" |
|
52 |
ISABELLE_PATH="%s" |
|
53 |
||
54 |
ISABELLE_USEDIR_OPTIONS="$ISABELLE_USEDIR_OPTIONS %s -t true -v true -d pdf -g true -i true" |
|
42109 | 55 |
Z3_NON_COMMERCIAL="yes" |
42113 | 56 |
%s |
57 |
''' % (isabelle_path, parallelism_options, more_settings) |
|
41542 | 58 |
|
59 |
writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a') |
|
60 |
writer.write(extra_settings) |
|
61 |
writer.close() |
|
62 |
||
63 |
||
64 |
def extract_isabelle_run_timing(logdata): |
|
65 |
||
66 |
def to_secs(h, m, s): |
|
67 |
return (int(h) * 60 + int(m)) * 60 + int(s) |
|
68 |
pat = r'Finished (\S+) \((\d+):(\d+):(\d+) elapsed time, (\d+):(\d+):(\d+) cpu time' |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
69 |
pat2 = r'Timing (\S+) \((\d+) threads, (\d+\.\d+)s elapsed time, (\d+\.\d+)s cpu time, (\d+\.\d+)s GC time, factor (\d+\.\d+)\)' |
41542 | 70 |
t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)}) |
71 |
for name, eh, em, es, ch, cm, cs in re.findall(pat, logdata)) |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
72 |
for name, threads, elapsed, cpu, gc, factor in re.findall(pat2, logdata): |
41542 | 73 |
|
74 |
if name not in t: |
|
75 |
t[name] = {} |
|
76 |
||
77 |
t[name]['threads'] = int(threads) |
|
78 |
t[name]['elapsed_inner'] = elapsed |
|
79 |
t[name]['cpu_inner'] = cpu |
|
80 |
t[name]['gc'] = gc |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
81 |
t[name]['factor'] = factor |
41542 | 82 |
|
83 |
return t |
|
84 |
||
85 |
||
86 |
def extract_isabelle_run_summary(logdata): |
|
87 |
||
41894 | 88 |
re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE) |
41542 | 89 |
summary = '\n'.join(re_error.findall(logdata)) |
90 |
if summary == '': |
|
91 |
summary = 'ok' |
|
92 |
||
93 |
return summary |
|
94 |
||
95 |
||
96 |
def isabelle_usedir(env, isa_path, isabelle_usedir_opts, base_image, dir_name): |
|
97 |
||
98 |
return env.run_process('%s/bin/isabelle' % isa_path, 'usedir', |
|
99 |
isabelle_usedir_opts, base_image, dir_name) |
|
100 |
||
101 |
||
102 |
def isabelle_dependency_only(env, case, paths, dep_paths, playground): |
|
103 |
||
42114 | 104 |
isabelle_home = paths[0] |
105 |
result = path.join(isabelle_home, 'heaps') |
|
41542 | 106 |
os.makedirs(result) |
107 |
for dep_path in dep_paths: |
|
108 |
subprocess.check_call(['cp', '-R'] + glob(dep_path + '/*') + [result]) |
|
109 |
||
110 |
return (True, 'ok', {}, {}, result) |
|
111 |
||
112 |
||
42113 | 113 |
def build_isabelle_image(subdir, base, img, env, case, paths, dep_paths, playground, more_settings=''): |
41542 | 114 |
|
42114 | 115 |
isabelle_home = paths[0] |
41542 | 116 |
dep_path = dep_paths[0] |
42120 | 117 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, more_settings=more_settings) |
42114 | 118 |
os.chdir(path.join(isabelle_home, 'src', subdir)) |
41542 | 119 |
|
42114 | 120 |
(return_code, log) = isabelle_usedir(env, isabelle_home, '-b', base, img) |
41542 | 121 |
|
42114 | 122 |
result = path.join(isabelle_home, 'heaps') |
41542 | 123 |
return (return_code == 0, extract_isabelle_run_summary(log), |
124 |
{'timing': extract_isabelle_run_timing(log)}, {'log': log}, result) |
|
125 |
||
126 |
||
42140 | 127 |
def isabelle_make(subdir, env, case, paths, dep_paths, playground, more_settings='', target='all', keep_results=False): |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
128 |
|
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
129 |
isabelle_home = paths[0] |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
130 |
dep_path = dep_paths[0] if dep_paths else None |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
131 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, more_settings=more_settings) |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
132 |
os.chdir(path.join(isabelle_home, subdir)) |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
133 |
|
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
134 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', '-k', target) |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
135 |
|
42140 | 136 |
result = path.join(isabelle_home, 'heaps') if keep_results else None |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
137 |
return (return_code == 0, extract_isabelle_run_summary(log), |
42140 | 138 |
{'timing': extract_isabelle_run_timing(log)}, {'log': log}, result) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
139 |
|
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
140 |
|
42121 | 141 |
def isabelle_makeall(env, case, paths, dep_paths, playground, more_settings='', target='all', make_options=()): |
41542 | 142 |
|
42114 | 143 |
isabelle_home = paths[0] |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
144 |
dep_path = dep_paths[0] if dep_paths else None |
42114 | 145 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, more_settings=more_settings) |
146 |
os.chdir(isabelle_home) |
|
41542 | 147 |
|
42121 | 148 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'makeall', '-k', *(make_options + (target,))) |
41542 | 149 |
|
150 |
return (return_code == 0, extract_isabelle_run_summary(log), |
|
151 |
{'timing': extract_isabelle_run_timing(log)}, {'log': log}, None) |
|
152 |
||
153 |
||
154 |
# Isabelle configurations |
|
155 |
||
156 |
@configuration(repos = [Isabelle], deps = []) |
|
157 |
def Pure(env, case, paths, dep_paths, playground): |
|
158 |
"""Pure image""" |
|
159 |
||
42114 | 160 |
isabelle_home = paths[0] |
161 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, '') |
|
162 |
os.chdir(path.join(isabelle_home, 'src', 'Pure')) |
|
41542 | 163 |
|
42114 | 164 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', 'Pure') |
41542 | 165 |
|
42114 | 166 |
result = path.join(isabelle_home, 'heaps') |
41542 | 167 |
return (return_code == 0, extract_isabelle_run_summary(log), |
168 |
{'timing': extract_isabelle_run_timing(log)}, {'log': log}, result) |
|
169 |
||
170 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
|
171 |
def FOL(*args): |
|
172 |
"""FOL image""" |
|
173 |
return build_isabelle_image('FOL', 'Pure', 'FOL', *args) |
|
174 |
||
175 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
|
176 |
def HOL(*args): |
|
177 |
"""HOL image""" |
|
178 |
return build_isabelle_image('HOL', 'Pure', 'HOL', *args) |
|
179 |
||
180 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
181 |
def HOL_HOLCF(*args): |
|
182 |
"""HOL-HOLCF image""" |
|
183 |
return build_isabelle_image('HOL/HOLCF', 'HOL', 'HOLCF', *args) |
|
184 |
||
185 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
186 |
def HOL_Nominal(*args): |
|
187 |
"""HOL-Nominal image""" |
|
188 |
return build_isabelle_image('HOL/Nominal', 'HOL', 'HOL-Nominal', *args) |
|
189 |
||
190 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
191 |
def HOL_Word(*args): |
|
192 |
"""HOL-Word image""" |
|
193 |
return build_isabelle_image('HOL/Word', 'HOL', 'HOL-Word', *args) |
|
194 |
||
195 |
@configuration(repos = [Isabelle], deps = [ |
|
196 |
(HOL, [0]), |
|
197 |
(HOL_HOLCF, [0]), |
|
198 |
(HOL_Nominal, [0]), |
|
199 |
(HOL_Word, [0]) |
|
200 |
]) |
|
201 |
def AFP_images(*args): |
|
202 |
"""Isabelle images needed for the AFP""" |
|
203 |
return isabelle_dependency_only(*args) |
|
204 |
||
205 |
@configuration(repos = [Isabelle], deps = [ |
|
206 |
(AFP_images, [0]) |
|
207 |
]) |
|
208 |
def Isabelle_makeall(*args): |
|
209 |
"""Isabelle makeall""" |
|
210 |
return isabelle_makeall(*args) |
|
211 |
||
212 |
||
213 |
# Mutabelle configurations |
|
214 |
||
215 |
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground): |
|
216 |
||
217 |
"""Mutant testing for counterexample generators in Isabelle""" |
|
218 |
||
219 |
(loc_isabelle,) = paths |
|
220 |
(dep_isabelle,) = dep_paths |
|
221 |
prepare_isabelle_repository(loc_isabelle, env.settings.contrib, dep_isabelle) |
|
222 |
os.chdir(loc_isabelle) |
|
223 |
||
224 |
(return_code, log) = env.run_process('bin/isabelle', |
|
225 |
'mutabelle', '-O', playground, theory) |
|
226 |
||
227 |
try: |
|
228 |
mutabelle_log = util.readfile(path.join(playground, 'log')) |
|
229 |
except IOError: |
|
230 |
mutabelle_log = '' |
|
231 |
||
232 |
return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log), |
|
41652 | 233 |
{'timing': extract_isabelle_run_timing(log)}, |
234 |
{'log': log, 'mutabelle_log': mutabelle_log}, None) |
|
41542 | 235 |
|
236 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
237 |
def Mutabelle_Relation(*args): |
|
238 |
"""Mutabelle regression suite on Relation theory""" |
|
239 |
return invoke_mutabelle('Relation', *args) |
|
240 |
||
241 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
242 |
def Mutabelle_List(*args): |
|
243 |
"""Mutabelle regression suite on List theory""" |
|
244 |
return invoke_mutabelle('List', *args) |
|
245 |
||
246 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
247 |
def Mutabelle_Set(*args): |
|
248 |
"""Mutabelle regression suite on Set theory""" |
|
249 |
return invoke_mutabelle('Set', *args) |
|
250 |
||
251 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
252 |
def Mutabelle_Map(*args): |
|
253 |
"""Mutabelle regression suite on Map theory""" |
|
254 |
return invoke_mutabelle('Map', *args) |
|
255 |
||
256 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
257 |
def Mutabelle_Divides(*args): |
|
258 |
"""Mutabelle regression suite on Divides theory""" |
|
259 |
return invoke_mutabelle('Divides', *args) |
|
260 |
||
261 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
262 |
def Mutabelle_MacLaurin(*args): |
|
263 |
"""Mutabelle regression suite on MacLaurin theory""" |
|
264 |
return invoke_mutabelle('MacLaurin', *args) |
|
265 |
||
266 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
267 |
def Mutabelle_Fun(*args): |
|
268 |
"""Mutabelle regression suite on Fun theory""" |
|
269 |
return invoke_mutabelle('Fun', *args) |
|
42040 | 270 |
|
271 |
||
272 |
# Judgement Day configurations |
|
273 |
||
42095 | 274 |
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices') |
42040 | 275 |
|
276 |
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground): |
|
277 |
"""Judgement Day regression suite""" |
|
278 |
||
279 |
isa = paths[0] |
|
280 |
dep_path = dep_paths[0] |
|
281 |
||
282 |
os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd |
|
283 |
prepare_isabelle_repository(isa, env.settings.contrib, dep_path) |
|
284 |
||
285 |
output = {} |
|
286 |
success_rates = {} |
|
287 |
some_success = False |
|
288 |
||
289 |
for atp in judgement_day_provers: |
|
290 |
||
291 |
log_dir = path.join(playground, 'mirabelle_log_' + atp) |
|
292 |
os.makedirs(log_dir) |
|
293 |
||
294 |
cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy' |
|
295 |
% (isa, log_dir, atp, opts, theory)) |
|
296 |
||
297 |
os.system(cmd) |
|
298 |
output[atp] = util.readfile(path.join(log_dir, theory + '.log')) |
|
299 |
||
300 |
percentages = list(re.findall(r'Success rate: (\d+)%', output[atp])) |
|
301 |
if len(percentages) == 2: |
|
302 |
success_rates[atp] = { |
|
303 |
'sledgehammer': int(percentages[0]), |
|
304 |
'metis': int(percentages[1])} |
|
305 |
if success_rates[atp]['sledgehammer'] > 0: |
|
306 |
some_success = True |
|
307 |
else: |
|
308 |
success_rates[atp] = {} |
|
309 |
||
310 |
||
311 |
data = {'success_rates': success_rates} |
|
312 |
raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers) |
|
313 |
# FIXME: summary? |
|
314 |
return (some_success, '', data, raw_attachments, None) |
|
315 |
||
316 |
||
317 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
318 |
def JD_NS(*args): |
|
319 |
"""Judgement Day regression suite NS""" |
|
320 |
return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args) |
|
321 |
||
322 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
323 |
def JD_FTA(*args): |
|
324 |
"""Judgement Day regression suite FTA""" |
|
325 |
return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args) |
|
326 |
||
327 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
328 |
def JD_Hoare(*args): |
|
329 |
"""Judgement Day regression suite Hoare""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
330 |
return judgement_day('Isabelle/src/HOL/IMPP', 'Hoare', 'prover_timeout=10', *args) |
42040 | 331 |
|
332 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
|
333 |
def JD_SN(*args): |
|
334 |
"""Judgement Day regression suite SN""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
335 |
return judgement_day('Isabelle/src/HOL/Proofs/Lambda', 'StrongNorm', 'prover_timeout=10', *args) |
42040 | 336 |
|
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
337 |
|
42192 | 338 |
JD_confs = 'JD_NS JD_FTA JD_Hoare JD_SN JD_Arrow JD_FFT JD_Jinja JD_QE JD_S2S'.split(' ') |
339 |
||
340 |
@scheduler() |
|
42197 | 341 |
def judgement_day_scheduler(env): |
42192 | 342 |
"""Scheduler for Judgement Day.""" |
343 |
return schedule.age_scheduler(env, 'Isabelle', JD_confs) |
|
344 |
||
345 |
||
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
346 |
# SML/NJ |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
347 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
348 |
smlnj_settings = ''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
349 |
ML_SYSTEM=smlnj |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
350 |
ML_HOME="/home/smlnj/110.72/bin" |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
351 |
ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=256" |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
352 |
ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX") |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
353 |
''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
354 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
355 |
@configuration(repos = [Isabelle], deps = []) |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
356 |
def SML_HOL(*args): |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
357 |
"""HOL image built with SML/NJ""" |
42140 | 358 |
return isabelle_make('src/HOL', *args, more_settings=smlnj_settings, target='HOL', keep_results=True) |
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
359 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
360 |
@configuration(repos = [Isabelle], deps = []) |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
361 |
def SML_makeall(*args): |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
362 |
"""Makeall built with SML/NJ""" |
42138
e54a985daa61
added make target 'smlnj' to refer to what can/should be tested using smlnj -- allows the use of "isabelle makeall smlnj";
krauss
parents:
42121
diff
changeset
|
363 |
return isabelle_makeall(*args, more_settings=smlnj_settings, target='smlnj', make_options=('-j', '3')) |