Skip to content

Commit

Permalink
Release v2.2.5+0.1.8+8.19
Browse files Browse the repository at this point in the history
  • Loading branch information
K-dizzled committed Jun 26, 2024
1 parent 06bc5ee commit 8e5738c
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions src/test/benchmark/runBenchmark.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import * as path from "path";

import { AdditionalFileImport } from "./additionalImports";
import { BenchmarkResult, runTestBenchmark } from "./benchmarkingFramework";
import { InputModelsParams, onlyAutoModelsParams } from "./inputModelsParams";
import { InputModelsParams } from "./inputModelsParams";
import { BenchmarkReportHolder } from "./reportHolder";
import { DatasetItem, datasetFromJson } from "./utils/datasetConstructionUtils";
import { DatasetItem } from "./utils/datasetConstructionUtils";
import {
code,
consoleLog,
Expand All @@ -32,33 +32,33 @@ interface Benchmark {
perProofTimeoutMillis: number;
}

const resPath = path.join(
__dirname,
"../../../src/test/benchmark/benchmarkPrivate/resources/test.json"
);
// const resPath = path.join(
// __dirname,
// "../../../src/test/benchmark/benchmarkPrivate/resources/test.json"
// );
const reportPath = path.join(
__dirname,
"../../../src/test/benchmark/benchmarkPrivate/report.json"
"../../../src/test/benchmark/report.json"
);
export const immBenchmark: Benchmark = {
name: "Benchmark predef tactics in IMM group A",
items: datasetFromJson(resPath, "imm"),
inputModelsParams: onlyAutoModelsParams,
requireAllAdmitsCompleted: false,
benchmarkFullTheorems: true,
benchmarkAdmits: false,
timeoutMinutes: 1000,
groupName: "A",
// Uncomment the following line to enable additional imports.
// This is necessary if you want to generate completion with
// an additional solver.
// additionalImports: [
// AdditionalFileImport.tactician(),
// AdditionalFileImport.coqHammer(),
// ],
maximumUsedPremisesAmount: undefined,
perProofTimeoutMillis: 30000,
};
// const immBenchmark: Benchmark = {
// name: "Benchmark predef tactics in IMM group A",
// items: datasetFromJson(resPath, "imm"),
// inputModelsParams: onlyAutoModelsParams,
// requireAllAdmitsCompleted: false,
// benchmarkFullTheorems: true,
// benchmarkAdmits: false,
// timeoutMinutes: 1000,
// groupName: "A",
// Uncomment the following line to enable additional imports.
// This is necessary if you want to generate completion with
// an additional solver.
// additionalImports: [
// AdditionalFileImport.tactician(),
// AdditionalFileImport.coqHammer(),
// ],
// maximumUsedPremisesAmount: undefined,
// perProofTimeoutMillis: 30000,
// };

const benchmarks: Benchmark[] = [];

Expand Down

0 comments on commit 8e5738c

Please sign in to comment.