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