Admin/mira.py
author krauss
Mon, 18 Apr 2011 12:12:42 +0200
changeset 43256 c9bf3f8a8930
parent 43255 0045b85101c9
child 43343 8a33a5596ba8
permissions -rw-r--r--
scheduler for Mutabelle regression
haftmann@41790
     1
"""
haftmann@41790
     2
    Test configuration descriptions for mira.
haftmann@41790
     3
"""
haftmann@41790
     4
haftmann@41790
     5
import os
haftmann@41790
     6
from os import path
haftmann@41790
     7
from glob import glob
haftmann@41790
     8
import subprocess
krauss@43255
     9
from datetime import datetime
haftmann@41790
    10
import re
haftmann@41790
    11
haftmann@41790
    12
import util
krauss@43255
    13
from util import Lazy
haftmann@41790
    14
krauss@43255
    15
from mira.report import Report, Report_Content
krauss@43255
    16
from mira.case import Case
krauss@43255
    17
from mira.tools import tool
krauss@43063
    18
from mira import schedule
krauss@43063
    19
from mira.environment import scheduler
krauss@43063
    20
haftmann@41790
    21
haftmann@41790
    22
# build and evaluation tools
haftmann@41790
    23
krauss@42977
    24
def prepare_isabelle_repository(loc_isabelle, loc_contrib, loc_dependency_heaps, parallelism = True, more_settings=''):
haftmann@41790
    25
haftmann@41790
    26
    loc_contrib = path.expanduser(loc_contrib)
haftmann@41790
    27
    if not path.exists(loc_contrib):
haftmann@41790
    28
        raise IOError('Bad file: %s' % loc_contrib)
haftmann@41790
    29
    subprocess.check_call(['ln', '-s', loc_contrib, '%s/contrib' % loc_isabelle])
haftmann@41790
    30
haftmann@41790
    31
    contributed_components = path.join(loc_isabelle, 'Admin', 'contributed_components')
haftmann@41790
    32
    if path.exists(contributed_components):
haftmann@41790
    33
        components = []
haftmann@41790
    34
        for component in util.readfile_lines(contributed_components):
haftmann@41790
    35
            loc_component = path.join(loc_isabelle, component)
haftmann@41790
    36
            if path.exists(loc_component):
haftmann@41790
    37
                components.append(loc_component)
haftmann@41790
    38
        writer = open(path.join(loc_isabelle, 'etc', 'components'), 'a')
haftmann@41790
    39
        for component in components:
haftmann@41790
    40
            writer.write(component + '\n')
haftmann@41790
    41
        writer.close()
haftmann@41790
    42
haftmann@41790
    43
    if loc_dependency_heaps:
haftmann@41790
    44
        isabelle_path = loc_dependency_heaps + '/$ISABELLE_IDENTIFIER:$ISABELLE_OUTPUT'
haftmann@41790
    45
    else:
haftmann@41790
    46
        isabelle_path = '$ISABELLE_OUTPUT'
haftmann@41790
    47
haftmann@41790
    48
    if parallelism:
haftmann@41790
    49
        parallelism_options = '-M max'
haftmann@41790
    50
    else:
haftmann@41790
    51
        parallelism_options = '-M 1 -q 0'
haftmann@41790
    52
haftmann@41790
    53
    extra_settings = '''
haftmann@41790
    54
ISABELLE_HOME_USER="$ISABELLE_HOME/home_user"
haftmann@41790
    55
ISABELLE_OUTPUT="$ISABELLE_HOME/heaps"
haftmann@41790
    56
ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info"
haftmann@41790
    57
ISABELLE_PATH="%s"
haftmann@41790
    58
haftmann@41790
    59
ISABELLE_USEDIR_OPTIONS="$ISABELLE_USEDIR_OPTIONS %s -t true -v true -d pdf -g true -i true"
krauss@42973
    60
Z3_NON_COMMERCIAL="yes"
krauss@42977
    61
%s
krauss@42977
    62
''' % (isabelle_path, parallelism_options, more_settings)
haftmann@41790
    63
haftmann@41790
    64
    writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a')
haftmann@41790
    65
    writer.write(extra_settings)
haftmann@41790
    66
    writer.close()
haftmann@41790
    67
haftmann@41790
    68
haftmann@41790
    69
def extract_isabelle_run_timing(logdata):
haftmann@41790
    70
haftmann@41790
    71
    def to_secs(h, m, s):
haftmann@41790
    72
        return (int(h) * 60 + int(m)) * 60 + int(s)
haftmann@41790
    73
    pat = r'Finished (\S+) \((\d+):(\d+):(\d+) elapsed time, (\d+):(\d+):(\d+) cpu time'
krauss@43057
    74
    pat2 = r'Timing (\S+) \((\d+) threads, (\d+\.\d+)s elapsed time, (\d+\.\d+)s cpu time, (\d+\.\d+)s GC time, factor (\d+\.\d+)\)'
haftmann@41790
    75
    t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)})
haftmann@41790
    76
             for name, eh, em, es, ch, cm, cs in re.findall(pat, logdata))
krauss@43057
    77
    for name, threads, elapsed, cpu, gc, factor in re.findall(pat2, logdata):
haftmann@41790
    78
haftmann@41790
    79
        if name not in t:
haftmann@41790
    80
            t[name] = {}
haftmann@41790
    81
haftmann@41790
    82
        t[name]['threads'] = int(threads)
haftmann@41790
    83
        t[name]['elapsed_inner'] = elapsed
haftmann@41790
    84
        t[name]['cpu_inner'] = cpu
haftmann@41790
    85
        t[name]['gc'] = gc
krauss@43057
    86
        t[name]['factor'] = factor
haftmann@41790
    87
haftmann@41790
    88
    return t
haftmann@41790
    89
haftmann@41790
    90
haftmann@41790
    91
def extract_isabelle_run_summary(logdata):
haftmann@41790
    92
krauss@42765
    93
    re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE)
haftmann@41790
    94
    summary = '\n'.join(re_error.findall(logdata))
haftmann@41790
    95
    if summary == '':
haftmann@41790
    96
        summary = 'ok'
haftmann@41790
    97
haftmann@41790
    98
    return summary
haftmann@41790
    99
haftmann@41790
   100
krauss@43255
   101
@tool
krauss@43255
   102
def import_isatest_log(env, conf, logfile):
krauss@43255
   103
krauss@43255
   104
    """Imports isatest log file as a report."""
krauss@43255
   105
krauss@43255
   106
    def the_match(pat, text, name):
krauss@43255
   107
        match = re.search(pat, text)
krauss@43255
   108
        if not match: raise Exception('No match found for ' + name)
krauss@43255
   109
        return match.groups()
krauss@43255
   110
krauss@43255
   111
    def parse_date(d):
krauss@43255
   112
        return datetime.strptime(d, '%a %b %d %H:%M:%S %Z %Y')
krauss@43255
   113
krauss@43255
   114
    log = util.readfile(logfile)
krauss@43255
   115
krauss@43255
   116
    (begin_date, host) = the_match(r'-+ starting test -+ ([^-]*) -+ (\S*)', log, 'start tag')
krauss@43255
   117
    (isabelle_version,) = the_match(r'Isabelle version: ([a-f0-9]{12})', log, 'Isabelle version')
krauss@43255
   118
    (success, end_date) = the_match(r'-+ test (successful|FAILED) -+ ([^-]*) -', log, 'end tag')
krauss@43255
   119
    summary = extract_isabelle_run_summary(log)
krauss@43255
   120
    data = {'timing': extract_isabelle_run_timing(log)}
krauss@43255
   121
    atts = {'log': Lazy.simple(log)}
krauss@43255
   122
krauss@43255
   123
    content = Report_Content(summary, host, parse_date(begin_date),
krauss@43255
   124
      parse_date(end_date), Lazy.simple(data), atts)
krauss@43255
   125
    revision = ('Isabelle', env.repositories.get('Isabelle')[isabelle_version].hex())
krauss@43255
   126
    case = Case(conf, [revision])
krauss@43255
   127
krauss@43255
   128
    env.report_db.put(case, (success == 'successful'), content)
krauss@43255
   129
krauss@43255
   130
krauss@43255
   131
haftmann@41790
   132
def isabelle_usedir(env, isa_path, isabelle_usedir_opts, base_image, dir_name):
haftmann@41790
   133
haftmann@41790
   134
    return env.run_process('%s/bin/isabelle' % isa_path, 'usedir',
haftmann@41790
   135
        isabelle_usedir_opts, base_image, dir_name)
haftmann@41790
   136
haftmann@41790
   137
haftmann@41790
   138
def isabelle_dependency_only(env, case, paths, dep_paths, playground):
haftmann@41790
   139
krauss@42978
   140
    isabelle_home = paths[0]
krauss@42978
   141
    result = path.join(isabelle_home, 'heaps')
haftmann@41790
   142
    os.makedirs(result)
haftmann@41790
   143
    for dep_path in dep_paths:
haftmann@41790
   144
        subprocess.check_call(['cp', '-R'] + glob(dep_path + '/*') + [result])
haftmann@41790
   145
haftmann@41790
   146
    return (True, 'ok', {}, {}, result)
haftmann@41790
   147
haftmann@41790
   148
krauss@42977
   149
def build_isabelle_image(subdir, base, img, env, case, paths, dep_paths, playground, more_settings=''):
haftmann@41790
   150
krauss@42978
   151
    isabelle_home = paths[0]
haftmann@41790
   152
    dep_path = dep_paths[0]
krauss@42984
   153
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, more_settings=more_settings)
krauss@42978
   154
    os.chdir(path.join(isabelle_home, 'src', subdir))
haftmann@41790
   155
krauss@42978
   156
    (return_code, log) = isabelle_usedir(env, isabelle_home, '-b', base, img)
haftmann@41790
   157
krauss@42978
   158
    result = path.join(isabelle_home, 'heaps')
haftmann@41790
   159
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@41790
   160
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, result)
haftmann@41790
   161
haftmann@41790
   162
krauss@43011
   163
def isabelle_make(subdir, env, case, paths, dep_paths, playground, more_settings='', target='all', keep_results=False):
krauss@42979
   164
krauss@42979
   165
    isabelle_home = paths[0]
krauss@42979
   166
    dep_path = dep_paths[0] if dep_paths else None
krauss@42979
   167
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, more_settings=more_settings)
krauss@42979
   168
    os.chdir(path.join(isabelle_home, subdir))
krauss@42979
   169
krauss@42979
   170
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', '-k', target)
krauss@42979
   171
krauss@43011
   172
    result = path.join(isabelle_home, 'heaps') if keep_results else None
krauss@42979
   173
    return (return_code == 0, extract_isabelle_run_summary(log),
krauss@43011
   174
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, result)
krauss@42979
   175
krauss@42979
   176
krauss@42985
   177
def isabelle_makeall(env, case, paths, dep_paths, playground, more_settings='', target='all', make_options=()):
haftmann@41790
   178
krauss@42978
   179
    isabelle_home = paths[0]
krauss@42979
   180
    dep_path = dep_paths[0] if dep_paths else None
krauss@42978
   181
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, more_settings=more_settings)
krauss@42978
   182
    os.chdir(isabelle_home)
haftmann@41790
   183
krauss@42985
   184
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'makeall', '-k', *(make_options + (target,)))
haftmann@41790
   185
haftmann@41790
   186
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@41790
   187
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, None)
haftmann@41790
   188
haftmann@41790
   189
haftmann@41790
   190
# Isabelle configurations
haftmann@41790
   191
haftmann@41790
   192
@configuration(repos = [Isabelle], deps = [])
haftmann@41790
   193
def Pure(env, case, paths, dep_paths, playground):
haftmann@41790
   194
    """Pure image"""
haftmann@41790
   195
krauss@42978
   196
    isabelle_home = paths[0]
krauss@42978
   197
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, '')
krauss@42978
   198
    os.chdir(path.join(isabelle_home, 'src', 'Pure'))
haftmann@41790
   199
krauss@42978
   200
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', 'Pure')
haftmann@41790
   201
krauss@42978
   202
    result = path.join(isabelle_home, 'heaps')
haftmann@41790
   203
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@41790
   204
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, result)
haftmann@41790
   205
haftmann@41790
   206
@configuration(repos = [Isabelle], deps = [(Pure, [0])])
haftmann@41790
   207
def FOL(*args):
haftmann@41790
   208
    """FOL image"""
haftmann@41790
   209
    return build_isabelle_image('FOL', 'Pure', 'FOL', *args)
haftmann@41790
   210
haftmann@41790
   211
@configuration(repos = [Isabelle], deps = [(Pure, [0])])
haftmann@41790
   212
def HOL(*args):
haftmann@41790
   213
    """HOL image"""
haftmann@41790
   214
    return build_isabelle_image('HOL', 'Pure', 'HOL', *args)
haftmann@41790
   215
haftmann@41790
   216
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   217
def HOL_HOLCF(*args):
haftmann@41790
   218
    """HOL-HOLCF image"""
haftmann@41790
   219
    return build_isabelle_image('HOL/HOLCF', 'HOL', 'HOLCF', *args)
haftmann@41790
   220
haftmann@41790
   221
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   222
def HOL_Nominal(*args):
haftmann@41790
   223
    """HOL-Nominal image"""
haftmann@41790
   224
    return build_isabelle_image('HOL/Nominal', 'HOL', 'HOL-Nominal', *args)
haftmann@41790
   225
haftmann@41790
   226
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   227
def HOL_Word(*args):
haftmann@41790
   228
    """HOL-Word image"""
haftmann@41790
   229
    return build_isabelle_image('HOL/Word', 'HOL', 'HOL-Word', *args)
haftmann@41790
   230
haftmann@41790
   231
@configuration(repos = [Isabelle], deps = [
haftmann@41790
   232
    (HOL, [0]),
haftmann@41790
   233
    (HOL_HOLCF, [0]),
haftmann@41790
   234
    (HOL_Nominal, [0]),
haftmann@41790
   235
    (HOL_Word, [0])
haftmann@41790
   236
  ])
haftmann@41790
   237
def AFP_images(*args):
haftmann@41790
   238
    """Isabelle images needed for the AFP"""
haftmann@41790
   239
    return isabelle_dependency_only(*args)
haftmann@41790
   240
haftmann@41790
   241
@configuration(repos = [Isabelle], deps = [
haftmann@41790
   242
    (AFP_images, [0])
haftmann@41790
   243
  ])
haftmann@41790
   244
def Isabelle_makeall(*args):
haftmann@41790
   245
    """Isabelle makeall"""
haftmann@41790
   246
    return isabelle_makeall(*args)
haftmann@41790
   247
haftmann@41790
   248
haftmann@41790
   249
# Mutabelle configurations
haftmann@41790
   250
haftmann@41790
   251
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground):
haftmann@41790
   252
haftmann@41790
   253
    """Mutant testing for counterexample generators in Isabelle"""
haftmann@41790
   254
haftmann@41790
   255
    (loc_isabelle,) = paths
haftmann@41790
   256
    (dep_isabelle,) = dep_paths
haftmann@41790
   257
    prepare_isabelle_repository(loc_isabelle, env.settings.contrib, dep_isabelle)
haftmann@41790
   258
    os.chdir(loc_isabelle)
haftmann@41790
   259
    
haftmann@41790
   260
    (return_code, log) = env.run_process('bin/isabelle',
haftmann@41790
   261
      'mutabelle', '-O', playground, theory)
haftmann@41790
   262
    
haftmann@41790
   263
    try:
haftmann@41790
   264
        mutabelle_log = util.readfile(path.join(playground, 'log'))
haftmann@41790
   265
    except IOError:
haftmann@41790
   266
        mutabelle_log = ''
haftmann@41790
   267
haftmann@41790
   268
    return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log),
haftmann@42521
   269
      {'timing': extract_isabelle_run_timing(log)},
haftmann@42521
   270
      {'log': log, 'mutabelle_log': mutabelle_log}, None)
haftmann@41790
   271
haftmann@41790
   272
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   273
def Mutabelle_Relation(*args):
haftmann@41790
   274
    """Mutabelle regression suite on Relation theory"""
haftmann@41790
   275
    return invoke_mutabelle('Relation', *args)
haftmann@41790
   276
haftmann@41790
   277
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   278
def Mutabelle_List(*args):
haftmann@41790
   279
    """Mutabelle regression suite on List theory"""
haftmann@41790
   280
    return invoke_mutabelle('List', *args)
haftmann@41790
   281
haftmann@41790
   282
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   283
def Mutabelle_Set(*args):
haftmann@41790
   284
    """Mutabelle regression suite on Set theory"""
haftmann@41790
   285
    return invoke_mutabelle('Set', *args)
haftmann@41790
   286
haftmann@41790
   287
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   288
def Mutabelle_Map(*args):
haftmann@41790
   289
    """Mutabelle regression suite on Map theory"""
haftmann@41790
   290
    return invoke_mutabelle('Map', *args)
haftmann@41790
   291
haftmann@41790
   292
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   293
def Mutabelle_Divides(*args):
haftmann@41790
   294
    """Mutabelle regression suite on Divides theory"""
haftmann@41790
   295
    return invoke_mutabelle('Divides', *args)
haftmann@41790
   296
haftmann@41790
   297
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   298
def Mutabelle_MacLaurin(*args):
haftmann@41790
   299
    """Mutabelle regression suite on MacLaurin theory"""
haftmann@41790
   300
    return invoke_mutabelle('MacLaurin', *args)
haftmann@41790
   301
haftmann@41790
   302
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   303
def Mutabelle_Fun(*args):
haftmann@41790
   304
    """Mutabelle regression suite on Fun theory"""
haftmann@41790
   305
    return invoke_mutabelle('Fun', *args)
krauss@42910
   306
krauss@43256
   307
mutabelle_confs = 'Mutabelle_Relation Mutabelle_List Mutabelle_Set Mutabelle_Map Mutabelle_Divides Mutabelle_MacLaurin Mutabelle_Fun'.split(' ')
krauss@43256
   308
krauss@43256
   309
@scheduler()
krauss@43256
   310
def mutabelle_scheduler(env):
krauss@43256
   311
    """Scheduler for Mutabelle."""
krauss@43256
   312
    return schedule.age_scheduler(env, 'Isabelle', mutabelle_confs)
krauss@42910
   313
krauss@42910
   314
# Judgement Day configurations
krauss@42910
   315
krauss@42959
   316
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices')
krauss@42910
   317
krauss@42910
   318
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground):
krauss@42910
   319
    """Judgement Day regression suite"""
krauss@42910
   320
krauss@42910
   321
    isa = paths[0]
krauss@42910
   322
    dep_path = dep_paths[0]
krauss@42910
   323
krauss@42910
   324
    os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd
krauss@42910
   325
    prepare_isabelle_repository(isa, env.settings.contrib, dep_path)
krauss@42910
   326
krauss@42910
   327
    output = {}
krauss@42910
   328
    success_rates = {}
krauss@42910
   329
    some_success = False
krauss@42910
   330
krauss@42910
   331
    for atp in judgement_day_provers:
krauss@42910
   332
krauss@42910
   333
        log_dir = path.join(playground, 'mirabelle_log_' + atp)
krauss@42910
   334
        os.makedirs(log_dir)
krauss@42910
   335
krauss@42910
   336
        cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy'
krauss@42910
   337
               % (isa, log_dir, atp, opts, theory))
krauss@42910
   338
krauss@42910
   339
        os.system(cmd)
krauss@42910
   340
        output[atp] = util.readfile(path.join(log_dir, theory + '.log'))
krauss@42910
   341
krauss@42910
   342
        percentages = list(re.findall(r'Success rate: (\d+)%', output[atp]))
krauss@42910
   343
        if len(percentages) == 2:
krauss@42910
   344
            success_rates[atp] = {
krauss@42910
   345
                'sledgehammer': int(percentages[0]),
krauss@42910
   346
                'metis': int(percentages[1])}
krauss@42910
   347
            if success_rates[atp]['sledgehammer'] > 0:
krauss@42910
   348
                some_success = True
krauss@42910
   349
        else:
krauss@42910
   350
            success_rates[atp] = {}
krauss@42910
   351
krauss@42910
   352
krauss@42910
   353
    data = {'success_rates': success_rates}
krauss@42910
   354
    raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers)
krauss@42910
   355
    # FIXME: summary?
krauss@42910
   356
    return (some_success, '', data, raw_attachments, None)
krauss@42910
   357
krauss@42910
   358
krauss@42910
   359
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   360
def JD_NS(*args):
krauss@42910
   361
    """Judgement Day regression suite NS"""
krauss@42910
   362
    return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args)
krauss@42910
   363
krauss@42910
   364
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   365
def JD_FTA(*args):
krauss@42910
   366
    """Judgement Day regression suite FTA"""
krauss@42910
   367
    return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args)
krauss@42910
   368
krauss@42910
   369
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   370
def JD_Hoare(*args):
krauss@42910
   371
    """Judgement Day regression suite Hoare"""
krauss@42913
   372
    return judgement_day('Isabelle/src/HOL/IMPP', 'Hoare', 'prover_timeout=10', *args)
krauss@42910
   373
krauss@42910
   374
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   375
def JD_SN(*args):
krauss@42910
   376
    """Judgement Day regression suite SN"""
krauss@42913
   377
    return judgement_day('Isabelle/src/HOL/Proofs/Lambda', 'StrongNorm', 'prover_timeout=10', *args)
krauss@42910
   378
krauss@42980
   379
krauss@43063
   380
JD_confs = 'JD_NS JD_FTA JD_Hoare JD_SN JD_Arrow JD_FFT JD_Jinja JD_QE JD_S2S'.split(' ')
krauss@43063
   381
krauss@43063
   382
@scheduler()
krauss@43068
   383
def judgement_day_scheduler(env):
krauss@43063
   384
    """Scheduler for Judgement Day."""
krauss@43063
   385
    return schedule.age_scheduler(env, 'Isabelle', JD_confs)
krauss@43063
   386
krauss@43063
   387
krauss@42980
   388
# SML/NJ
krauss@42980
   389
krauss@42980
   390
smlnj_settings = '''
krauss@42980
   391
ML_SYSTEM=smlnj
krauss@42980
   392
ML_HOME="/home/smlnj/110.72/bin"
krauss@42980
   393
ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=256"
krauss@42980
   394
ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX")
krauss@42980
   395
'''
krauss@42980
   396
krauss@42980
   397
@configuration(repos = [Isabelle], deps = [])
krauss@42980
   398
def SML_HOL(*args):
krauss@42980
   399
    """HOL image built with SML/NJ"""
krauss@43011
   400
    return isabelle_make('src/HOL', *args, more_settings=smlnj_settings, target='HOL', keep_results=True)
krauss@42980
   401
krauss@42980
   402
@configuration(repos = [Isabelle], deps = [])
krauss@42980
   403
def SML_makeall(*args):
krauss@42980
   404
    """Makeall built with SML/NJ"""
krauss@43002
   405
    return isabelle_makeall(*args, more_settings=smlnj_settings, target='smlnj', make_options=('-j', '3'))