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