<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Prover-independent Axiom Selection for Automated Theorem Proving in Ontohub</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Eugen</forename><surname>Kuksa</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">University of Bremen Bremen</orgName>
								<address>
									<country key="DE">Germany</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Till</forename><surname>Mossakowski</surname></persName>
							<affiliation key="aff1">
								<orgName type="institution">University of Magdeburg</orgName>
								<address>
									<settlement>Magdeburg</settlement>
									<country key="DE">Germany</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Prover-independent Axiom Selection for Automated Theorem Proving in Ontohub</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">03FD11A05AC1E4E9AD698478BD810B6C</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-25T02:38+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>In recent years, formalised large theories in form of ontologies, system specifications or mathematical libraries with thousands of sentences have become more and more common. Automatically proving properties in such theories is an important task in research as well as in industry, for instance, as part of system specifications. However, automated theorem provers struggle finding proofs when there are too many axioms available. This paper presents and investigates two approaches to reduce the load on automated theorem provers by preselecting axioms: 1) a generalisation of the SInE selection heuristics to arbitrary first-order provers, and 2) frequent item set mining. These selection methods are implemented in the web application Ontohub. One of the implementations' usefulness is validated while others' is refuted by an evaluation on well-known benchmarks for automated theorem proving. needed. This significantly reduces the search space: instead of thousands of axioms, there might only be a few dozens or hundred axioms available for proving.</p><p>This work presents an implementation of two axiom selection algorithms that is not bound to a specific prover but rather works independently of the prover.</p><p>This paper is structured as follows: Section 2 provides basic knowledge of the concepts and systems used in this work, namely the software tools Ontohub and Hets (suited for proving with first-order theories) and</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1">Introduction</head><p>In recent years, the ability of systems to reason over large logical theories has become more and more important. Large theories, i.e. theories with many sentences and symbols, are becoming more common since large knowledge bases are arising in forms of ontologies and comprehensive mathematical libraries that have been translated to formal languages that are suitable for automated reasoning.</p><p>At the same time, theorem provers have evolved to feature efficient heuristics for finding proofs. These theorem provers, however, were traditionally designed for working with small to medium-sized collections of sentences, for example, an axiomatisation of set theory or of algebraic constructs like groups or vector spaces. Supplying these provers with larger theories reduces their chance of success because the search space grows exponentially with the number of sentences.</p><p>In most cases, only a few axioms are actually needed for proving a theorem in a theory containing thousands of axioms. Instead of only focusing on the improvement of the proving algorithm and the prover's heuristics, one can also reduce proving time by supplying the prover with a modified theory omitting sentences that are not the AI method of frequent item set mining (which we will employ for axiom selection). Section 3 presents the axiom selection algorithms whose implementation is described briefly in section 4 and evaluated in section 5. Afterwards, section 6 gives an overview of related work while section 7 concludes this paper.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">Preliminaries</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.1">Ontohub</head><p>Ontohub <ref type="bibr" target="#b11">[12]</ref> is an open source repository engine for managing distributed logical theories. While Ontohub focuses on ontologies, it supports arbitrary logical theories, let them be ontologies, models, specifications, or others. The distributed nature enables communities to share and exchange their contributions easily. Ontohub supports (among others) first-order logic based on the TPTP format <ref type="bibr" target="#b25">[26]</ref> It also supports various structuring and modularity constructs and inter-theory (concept) mappings, building on the OMG-standardized DOL language.</p><p>Ontohub has several distinctive features. The following list gives a short overview of them.</p><p>• Different repositories organise logical theories. For each repository, access rights and ownership can be managed on a per-user or per-team basis.</p><p>• Logical theories (and all other files) are versioned. The underlying git<ref type="foot" target="#foot_0">1</ref>  <ref type="bibr" target="#b26">[27]</ref> version control system is an integral part of Ontohub. This feature allows the user to browse through the history of the repository and inspect any change in any file.</p><p>• Ontohub features an integrated editor for logic theories, which however may also be edited outside of Ontohub: files can either be uploaded via the web front end or via git with SSH.</p><p>• Ontohub is fully linked-data compliant. One and the same URL can be used for referencing a logical theory, downloading its defining file or examining it in a user-friendly presentation in the browser. The representation served by Ontohub depends on the requested MIME-type.</p><p>• Logical theories can be modular and distributed, which means they can be structured into many simpler theories depending on each other.</p><p>• As in BioPortal <ref type="bibr" target="#b16">[17]</ref> and the NeOn Toolkit <ref type="bibr" target="#b7">[8]</ref>, logical theories can be aligned and combined along alignments.</p><p>• Logical relations like interpretations of theories, conservative extensions, etc. between logical theories are supported.</p><p>• Diverse structuring languages are supported, including DOL 2 <ref type="bibr" target="#b14">[15]</ref> and CASL <ref type="bibr" target="#b3">[4]</ref>.</p><p>• As a novel contribution of this work, logical theories may contain conjectures which Ontohub recognises.</p><p>There is an interface for proving these with different parametrisations.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.2">Hets</head><p>Ontohub itself does only little analysis of logical theories. Instead, we use the Heterogeneous Tool Set (Hets) 3 <ref type="bibr" target="#b13">[14]</ref> as a back end to parse and evaluate a logical theory. Hets features a RESTful web API: As soon as a logical theory is sent to Hets's HTTP server with the command to parse it, it analyses the theory file and answers the request with an XML or JSON representation of its details. Ontohub then parses the answer, post-processes it and then stores the theory's details in the database. The whole evaluation process is done asynchronously in the background, so that the user can still work with the web application.</p><p>Currently, Hets has an interface to several first-order automated provers (ATPs) as, for example, SPASS <ref type="bibr" target="#b27">[28]</ref>, E <ref type="bibr" target="#b20">[21]</ref>, Darwin <ref type="bibr" target="#b4">[5]</ref>, and via the MathServe Broker <ref type="bibr" target="#b29">[30]</ref>: Vampire <ref type="bibr" target="#b18">[19]</ref>. Similar to the analysis of logical theories, Hets can be called to run a proof attempt via the RESTful web API.</p><p>Hets also features user interfaces other than the web API, for example, a graphical user interface, a stateless command line interface or an interactive command prompt, but we do not use them in the context of Ontohub.</p><p>Before starting this work, Ontohub was not able to recognise conjectures in a logical theory. Hets, however, already provided proving functionality and thus, its analysis of the theory already discovered conjectures. However, Hets's proving interface has not been suitable for the use with Ontohub yet. For the preparation of the axiom selection, adjustments of Hets's interface and the creation of an infrastructure for proving conjectures in Ontohub were required.</p><p>By this work, Ontohub finds conjectures (called theorems for simplicity) and allows the user to run proof attempts with each of Hets's ATP that are suitable for the logic translation's target logic. For each finished proof attempt, Ontohub provides an overview of its details like the time it took, the axioms that were used and the prover's output. It is even possible to run multiple proof attempts in parallel with different ATP which yields a higher success rate <ref type="bibr" target="#b5">[6]</ref>.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2.3">Frequent Item Set Mining</head><p>Frequent item set mining <ref type="bibr" target="#b0">[1]</ref> is a method commonly used for market basket analysis. It aims at revealing regularities in the shopping behaviour of customers of, for example, supermarkets and online shops: It finds products that are usually bought together. From a more technical perspective, it can also be used for dependence analysis. In the context of axiom selection, our approach is to find sentences that have symbols in common and hence are related to each other. This section briefly presents the basic notions of frequent item set mining. Details of implementations are not relevant at this point. The following definitions are based on Borgelt's lecture slides <ref type="bibr" target="#b6">[7]</ref>  Items are these entities whose occurrence together with other entities is analysed, for example, shopping products. A transaction database can be, for example, a collection of purchases in a shop over a given period of time. Note that the same transaction can occur multiple times in a transaction database because it is defined as a multiset. In practice, the item base is often given implicitly as the union of all the item sets in the transaction database. The cover is the multiset of transactions that cover the given item set. It is a tool for defining two of the central notions of this topic: the absolute and the relative support.</p><formula xml:id="formula_0">Definition 2.3 s T (I) . . = | K T (I) | is the absolute support of I with respect to T . σ T (I) . . = 1 n • | K T (I) | is the relative support of I with respect to T .</formula><p>The support is the number or fraction of transactions in the transaction database that cover an item set. It is also called the absolute or relative frequency. </p><formula xml:id="formula_1">either F T (s min ) = {I ⊆ B | s T (I) ≥ s min } or analogously Φ T (σ min ) = {I ⊆ B | σ T (I) ≥ σ min }</formula><p>There are algorithms which compute the set of frequent item sets efficiently. In the worst case, the time complexity is exponential in the number of items. However, algorithms used in practice, like FP-Growth <ref type="bibr" target="#b8">[9]</ref>, Eclat <ref type="bibr" target="#b28">[29]</ref> and Apriori <ref type="bibr" target="#b1">[2]</ref>, prune the search space in a way that mining is not only feasible but also finishes quickly with real world data. Except for some special cases, FP-Growth is the fastest algorithm in general <ref type="bibr" target="#b6">[7]</ref>.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Axiom Selection Algorithms</head><p>The basic idea of many selection methods is to find sentences that share a symbol with the already selected sentences. Standing out, SInE concentrates on the characteristics of definitions: They describe more special terms by using more general terms. It assumes that the more general terms occur more often in a theory.</p><p>An entirely different observation we made when manually solving mathematics-textbook exercises is that sentences are probably relevant if they share many symbols with the conjecture or the already selected sentences. This section covers axiom selection ideas based on this observation which are novel contributions of this work.</p><p>In the sequel, let symbols(ϕ) denote the set of non-logical symbols of a first-order sentence ϕ.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.1">SInE</head><p>SInE operates heuristically on the syntax of first-order sentences and was first implemented in the Vampire Prover. It was first developed in Hoder's masters thesis 'Automated Reasoning in Large Knowledge Bases'. It entered the public as an implementation in Python with the Vampire V9 and E 0.999 as a back end at CASC-J4<ref type="foot" target="#foot_3">5</ref>  <ref type="bibr" target="#b22">[23]</ref>. Later, an implementation was included in both, the Vampire Prover and the E Theorem Prover. A detailed description of the algorithm can be found in <ref type="bibr" target="#b9">[10]</ref>. This section only reiterates the original work while being formulated slightly differently since the definitions are also needed for the axiom selection methods with frequent item set mining.</p><p>Definition 3.1 Let k ∈ N, s be a symbol, ϕ, ψ be sentences. Furthermore, let ψ be the conjecture. Let trigger ⊆ Sym × Sen be an arbitrary relation.</p><p>1. s is 0-step triggered iff s ∈ symbols(ψ).</p><p>2. ϕ is k + 1-step triggered iff s is k-step triggered and trigger(s, ϕ).</p><p>3. s is k-step triggered iff there is a k-step triggered ϕ and s ∈ symbols(ϕ).</p><p>This recursive definition can be illustrated as follows:</p><formula xml:id="formula_2">ψ s 0 trigger ϕ 1 s 1 trigger ϕ 2 . . .</formula><p>We now define a trigger relation as needed for Def. 3.1.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Definition 3.2</head><p>The commonness of a symbol s, denoted by occ(s), is the number of axioms which contain s.</p><p>Note that (quantified) variables are not treated as symbols.</p><p>Definition 3.3 Let s be a symbol, ϕ be an axiom, 1 ≤ t ∈ R the tolerance parameter, 1 ≤ g ∈ N the generality threshold parameter. Let furthermore s lcs ∈ symbols(ϕ) with for all s ∈ symbols(ϕ) : occ(s lcs ) ≤ occ(s) be the least common symbol of ϕ. The trigger relation of SInE is defined as: trigger(s, ϕ) iff s ∈ symbols(ϕ) and (either occ(s) ≤ g or occ(s) ≤ t • occ(s lcs )).</p><p>This means that either a sentence is triggered because it contains very uncommon symbols (due to the generality threshold; occ(s) ≤ g) or it is triggered by its least common symbol (or as close to it as the tolerance allows; occ(s) ≤ t • occ(s lcs )).</p><p>SInE then selects all axioms that are at most d-step triggered given a d ∈ N∪{∞} as the depth limit parameter.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.2">Simple Axiom Selection using Frequent Item Set Mining</head><p>Finding sentences that share many symbols with the conjecture is similar to finding frequent item sets: Frequent item set mining answers the question which items occur often in combination. be the item set for frequent item set mining. Then, the frequent symbol sets are the elements of</p><formula xml:id="formula_3">either F T (s min ) = {I ⊆ B | s T (I) ≥ s min } or equivalently Φ T (σ min ) = {I ⊆ B | σ T (I) ≥ σ min }</formula><p>Frequent symbol set mining helps finding the symbols that occur together in a sentence and that occur in the conjecture or the already selected sentences as well. One can then select the sentences that have all the symbols of the frequent symbol sets. This would, however, ignore the short sentences which have less symbols than the absolute minimum support. To consider them as well, one can select all the short sentences that share a symbol with the already selected sentences. Definition 3.5 Let F be a set of frequent symbol sets for the corresponding theory (A, C) with a defined minimum support. Let s be a symbol and ϕ ∈ A be an axiom while ψ ∈ C is the conjecture. Let 2 ≤ n ∈ N be a minimal symbol set size, t ∈ N be a short axiom tolerance, d ∈ N ∪ {∞} be a depth limit.</p><formula xml:id="formula_4">1. ϕ is 0-step selected iff | symbols(ϕ) | &lt; n + t. 2. s is 0-step selected iff s ∈ symbols(ψ). 3. S ∈ F is selection-enabled iff n ≤ | S |. 4. ϕ is k + 1-step selected iff</formula><p>there is some S ∈ F with: S is selection-enabled and S ⊆ symbols(ϕ) and s ∈ S for a k-step selected symbol s.</p><p>5. s is k-step selected iff ϕ is k-step selected and s ∈ symbols(ϕ), for k ≥ 1.</p><p>Then, the union of j-step selected axioms for all j ≤ d form the final axiom selection.</p><p>This definition describes a simple axiom selection idea that was implemented in Ontohub in this work. The recursive definition can be illustrated as follows:</p><formula xml:id="formula_5">F F ∈ ∈ ψ s 0 ∈ S 0 ⊆ symbols(ϕ 1 ) s 1 ∈ S 1 ⊆ symbols(ϕ 2 )</formula><p>. . .</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3.3">SInE with Frequent Symbol Set Mining</head><p>Another idea to circumvent the problem of short sentences is to combine frequent item set mining with SInE. The k-step-trigger relation from Def. 3.1 is modified. Apart from this definition, the SInE algorithm is used as is.</p><p>Definition 3.6 Let k ∈ N, s, s be symbols, ϕ, ψ be sentences. Furthermore, let ψ be the conjecture, trigger ⊆ Sym × Sen be a relation and F be the set of frequent symbol sets for the corresponding theory with a defined minimum support. Let 1 ≤ σ ∈ R be a tolerance value.</p><p>1. s is 0-step triggered iff s ∈ symbols(ψ).</p><p>2. s is k-step-trigger-enabled iff there is an S ∈ F : {s k , s} ⊆ S with s k being k-step triggered and for all s ∈ S : occ(s ) • σ ≥ occ(s mcs ) where s mcs ∈ S is the most common symbol of S.</p><p>3. ϕ is k + 1-step triggered iff s is k-step-trigger-enabled and trigger(s, ϕ).</p><formula xml:id="formula_6">4. s is k-step triggered iff ϕ is k-step triggered and s ∈ symbols(ϕ).</formula><p>This recursive definition can be illustrated as follows (note that the condition involving s mcs is not illustrated):</p><formula xml:id="formula_7">F F ∈ ∈ ψ s 0 ∈ S 0 s 0 trigger ϕ 1 s 1 ∈ S 1 s 1 trigger ϕ 2 . . .</formula><p>This definition says that not the symbols that occur in a triggered sentence are allowed to trigger further axioms. Instead, those symbols are allowed that occur in a frequent symbol set in combination with a symbol from a triggered sentence. Additionally, only the most common symbols (with a tolerance) of such a frequent symbol set may trigger an axiom. Specifying a high tolerance value σ allows any symbol from such a set to trigger. The evaluation of SInE showed that there were still many axioms selected and the idea was to reduce the selection even further.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">Implementation</head><p>The described axiom selection methods were implemented in Ontohub which is based on the web framework Ruby on Rails. One of Ontohub's basic features is the analysis of logical theories which recognises sentences and symbols inside the sentences. These are stored in a relational database and queried when an axiom selection heuristic is invoked.</p><p>In our implementation, association objects are stored in the database such that SInE's commonness values and the frequent symbol sets don't need to be re-computed. Furthermore, the minimal tolerance parameter of SInE for each axiom/symbol combination for the symbol to trigger the axiom is saved. This way, the axiom selection of consecutive proof attempts with different parametrisations of our selection methods or for different conjectures in the same logical theory is very efficient.</p><p>The axiom selections that are using frequent symbol set mining are based on the mining algorithm FP-Growth. The FP-Growth application itself is implemented in C by Borgelt <ref type="foot" target="#foot_4">6</ref> [7] and invoked from Ontohub's Ruby code.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">Evaluation</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5.1">Setup</head><p>The axiom selection was evaluated on first-order logic with the MPTP2078<ref type="foot" target="#foot_5">7</ref>  <ref type="bibr" target="#b2">[3]</ref> benchmark which is used in the TPTP format and is based on the Mizar Mathematical Library (MML) <ref type="bibr" target="#b19">[20]</ref>.</p><p>Each problem of the MPTP2078 benchmark comes in a 'bushy' and a 'chainy' version. The 'bushy' version contains only the axioms that are used in a human-made proof while the 'chainy' version contains all axioms that were introduced in the MML before the conjecture. Proof attempts were started for each problem in both versions without any axiom selection. Their results are used as a baseline: The problems that could not be solved in the bushy category are considered too hard for the used ATP with the given resources because the bushy ones only contain axioms which contribute to a known human-made proof. The other ones are the ones whose corresponding chainy version might be solved with an appropriate axiom selection. For evaluating the axiom selection methods, only the chainy versions were used. The problems that could be solved in the chainy category without an axiom selection are supposed to be also provable with an axiom selection. The experiments were conducted on an instance of Ontohub specifically set up for this work. This instance runs on a machine with two Intel R Xeon R E5-2667 v2 processors with HyperThreading (resulting in 32 logical processor cores) typically clocked at 3.3 GHz along with 256 GB of RAM.</p><p>For analysis and proving, 30 Hets instances were used in parallel. This puts heavy load on 30 of the cores. The asynchronous (to the web interface) processing of Hets responses is done by another 30 Ruby processes. Their workload alternates with that of the Hets processes, such that no additional cores are used extensively at the same time. The web user interface's workload is very low. During the evaluation, it is only called by Hets to fetch the theory files and it does not put heavy use to another core. In total 30 cores were used completely and one additional core was used with little load. This leaves one spare processor core for other tasks. During the experiments, processor utilisation of around 70% was observed.</p><p>For the benchmark, SPASS v3.7 and the E Theorem Prover 1.8 were used. These are among the best-rated first-order provers. Since E features an own implementation of SInE, this was not activated by only using the parameters -xAuto -tAuto among (soft) CPU time and memory limiting as well as input and output parameters.</p><p>The parameters for the axiom selections are shown in Table <ref type="table" target="#tab_1">1</ref>. Proof attempts were made with each combination of these parameters. Each of the provers was given a timeout of 10 seconds.</p><p>During the run with the first SInE with Frequent Symbol Set Mining configuration, a very slow runtime behaviour was observed for some examples. The selection for these examples was cancelled after about eight hours of selection runtime. As a consequence, a timeout for the axiom selection was implemented: If the axiom selection itself took longer than two minutes, the proof attempt was cancelled. The choice of two minutes is arbitrary. The selection timeout must be chosen considerably large to make sure that much CPU time is consumed because it was measured using wall clock time. The controlled environment ensured that no other CPU-hungry processes were running other than the axiom selection and proving (which are limited to less than one process per core). Hence, it is unlikely that other processes used much CPU time that should have been given to the selection for a perfect timing evaluation (as it would have happened by measuring CPU time instead of wall clock time). The selection timeout has to be much longer than the chosen proving timeout, though, because we want to analyse the selection run time as well. An axiom selection that consequently takes this much longer than proving a conjecture is not an acceptable method because the goal is not only to enable proofs but also shorten the overall proving time which includes the axiom selection.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5.2">Results</head><p>In the MPTP2078 benchmark, only 2044 problems are non-trivial. The other 34 conjectures are equal to an axiom and could be proved by Hets during static analysis using reflexivity of an entailment relation without invoking an external prover. Only the 2044 non-trivial problems were used for the axiom selection method evaluation.</p><p>The first figures in this section show stacked column charts of the performance: Figure <ref type="figure" target="#fig_4">1</ref> shows how many problems could be solved using SInE. The same goes for Figure <ref type="figure" target="#fig_6">2</ref> using SInE with Frequent Symbol Set Mining. Finally, Figure <ref type="figure" target="#fig_8">3</ref> shows the performance of the Simple Axiom Selection using Frequent Item Set Mining.</p><p>Top-rated first-order provers return a status of the proof attempt telling the result in a single word. These statuses are defined in the SZS ontology <ref type="bibr" target="#b21">[22]</ref>. The most common statuses used by provers are (i) THM (Theorem): All models of the axioms are models of the conjecture.</p><p>(ii) CSA (CounterSatisfiable): Some models of the axioms are models of the conjecture's negation.</p><p>(iii) TMO (Timeout): The prover exceeded the time limit.</p><p>Of these statuses, 'THM' and 'CSA' indicate a successful prover run, while 'TMO' shows that the prover did not finish successfully. There are more such values indicating failures which are actually used by software, but ATP only use the two values 'THM' and 'CSA' in case of success. We extended this ontology<ref type="foot" target="#foot_6">8</ref> by a status specifically for proving with reduced axiom sets:</p><p>(iv) CSAS (CounterSatisfiableWithSubset): Some models of the selected axioms are models of the conjecture's negation.</p><p>If a refutation of the conjecture is found using a strict subset of the axioms (which means that the prover returns with 'CSA'), we do not know whether the conjecture is really false or we have excluded an axiom that is crucial to a potentially existing proof. If the prover returns with 'THM', we know by monotonicity of entailment relations that the found proof is also a proof with the full axiom set. When a prover returns with a proof (marked in the diagrams as 'THM') or a refutation (marked as 'CSA'), a problem is considered solved. When it returns with a refutation while only a true subset of the axioms was used (marked as 'CSAS'), or with a proving timeout (marked as 'TMO (Prover)') or when the axiom selection takes more than two minutes (marked as 'TMO (Selection)'), the problem is considered still unsolved.  Figure <ref type="figure" target="#fig_1">4</ref> shows the average runtime in milliseconds of each axiom selection method over all parametrisations. It contains two values for each method. The first one is the average over all selections that did not reach the two-minute timeout. The second one is the average runtime of the selection, regardless whether or not the timeout was reached. This, of course, counts every selection that was cancelled as two minutes.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Number of Problems</head><p>Figure <ref type="figure">5</ref> shows how many axioms were selected on average using SInE. Both versions of the MPTP2078 without a selection are displayed for reference. Due to a high amount of timeouts in the other two selection methods, they are not included in these statistics. The distortion caused by leaving out selections that encountered a timeout would be too high.  To interpret the results properly, we need to know the size of the benchmarks. For implementation reasons, there is no very easy way to count the symbols including duplicates. So, only the distinct symbols are taken into account. This is regarded as a sufficient approximation for interpreting the results. The MPTP2078 benchmark in the bushy version has between 2 and 232 axioms per problem. Its average is 31.5 axioms with a standard deviation of 23.4. It has between 2 and 93 distinct symbols per problem with an average of 18.8 and a standard deviation of 12.1. Counting the distinct symbols per axiom, there are between 0 and 26 symbols, 2.9 on average with a standard deviation of 2.7.</p><p>The chainy version of the MPTP2078 has between 10 and 4563 axioms per problem. The average axiom count is 1876.4 with a standard deviation of 1288.6. The number of distinct symbols per problem ranges from 5 to 784 with an average of 266.7 and a standard deviation of 229.2. In the axioms, there are between 0 and 26 distinct symbols, 4.9 on average with a standard deviation of 3.1.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5.3">Discussion</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>SInE.</head><p>Inspecting Figure <ref type="figure" target="#fig_4">1</ref>, one can see that the E Theorem Prover improves by about 50% for most of the parametrisations of SInE (45% on average) compared to the chainy versions without any selection. SPASS also performs much better with a selection than without one: Its manages to solve 64% more problems on average across the SInE parametrisations. As a side note, the E Theorem Prover performs better than SPASS, even when comparing the E Theorem Prover without preselecting axioms against the best result with the selection for SPASS. Considering all SInE parametrisations, 769 problems could be solved, 330 of them could not be solved without an axiom selection. Without axiom selection, 444 problems could be solved.</p><p>For both provers, the number of 'CSA' and 'CSAS' results is negligible. For the largest tolerance value without a depth limit, meaning (t, d) = (2.0, ∞), the axiom selection takes more than two minutes for 294 examples. These examples have 2165.5 axioms on average with a standard deviation of 1680.1, ranging from 51 to 4563 and 332.5 distinct symbols on average with a standard deviation of 298.7, ranging from 12 to 784. This means that not only the largest problems take long during axiom selection but also some of the small problems. Having a timeout on some of the small problems may be a result of a high CPU load caused by other tasks performed on the hardware. It is imaginable that the timeout at the larger problems is due to the problem size, though.   Not only do both provers perform maximally as well as without the axiom selection but also the selection itself is cancelled frequently due to timeouts. The number of 'CSAS' results increases for some parametrisations, but regarding there is such a high amount of selection timeouts, this can be ignored. In total, 475 MPTP2078 problems could be solved using SInE with Frequent Symbol Set Mining, only 35 of which were not solved without an axiom selection.</p><p>Simple Axiom Selection using Frequent Item Set Mining.</p><p>Figure <ref type="figure" target="#fig_8">3</ref> shows that the timeout of the axiom selection is dominating the results. This means that for most of the problems, minutes of selection time are not enough. Only 239 MPTP2078 problems could be solved in total with this method, 9 of which could not be solved without a preselection in the chainy versions.</p><p>Selection Runtime.</p><p>Figure <ref type="figure" target="#fig_1">4</ref> shows the average runtime over all parametrisations of the presented selection methods. When only considering the problems that did not reach a timeout (red/left columns), SInE is the slowest method with an average runtime of 18.6 seconds per problem. This is not a fair comparison though, because the other two methods often reached the two-minute timeout while SInE did not. When counting two minutes for every timeout-reached selection (which actually passed during the selection), SInE achieves the best result (yellow/right columns). Two minutes are the smallest value that can be used without distorting the data too much. The distortion caused by counting two minutes is in favour of the axiom selection methods using frequent item set mining which are slower nevertheless. A runtime of several hours for a single problem was observed with SInE with Frequent Symbol Set Mining, before a timeout was implemented. This time was mainly consumed by the external frequent item set mining process. The same behaviour is suspected for the Simple Axiom Selection using Frequent Item Set Mining. Since the MPTP2078 comprises large theories, these two slower methods are again considered unsuitable.</p><p>Number of Selected Axioms.</p><p>Figure <ref type="figure">5</ref> shows the average number of selected axioms using SInE. When the depth limit is set to 5, considerably less axioms get selected than without a limitation in MPTP2078. Also, the difference between infinite depth  Figure <ref type="figure">5</ref>: Average number of selected axioms by SInE limit and a limit of 5 increases with a growing tolerance value. As expected, the number of selected axioms highly increases with a growing tolerance value.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Conclusion.</head><p>Considering the evaluation results, of the three selection methods, SInE clearly is the only usable method for large theories. The methods based on frequent symbol set mining take too much time for large problems and sometimes even for small problems. Even if the selection itself finishes quickly, the selected axioms do not enable proving considerably more conjectures. SInE on the other hand, allows to prove significantly more conjectures. For this reason, only SInE will be kept in Ontohub.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="6">Related Work</head><p>Axiom selection was actively researched in the recent years. A simple algorithm called RedAx <ref type="bibr" target="#b23">[24]</ref> was developed to provide evidence for the effectiveness of preselected axioms when proving. SRASS <ref type="bibr" target="#b24">[25]</ref> is a more sophisticated semantically operating algorithm to find the right axioms for a proof. MePo <ref type="bibr" target="#b12">[13]</ref> as part of Isabelle/Sledgehammer <ref type="bibr" target="#b15">[16,</ref><ref type="bibr" target="#b17">18]</ref> which is adding axioms that share a feature with the conjecture or already added axioms in several iterations. In each iteration, a pass mark is increased which makes it harder for axioms to be added to the selection. This method was followed by MaSh <ref type="bibr" target="#b10">[11]</ref> to improve Isabelle/Sledgehammer's axiom selection with machine learning methods that rank axioms by the amount and kind of features they share with the conjecture and takes into account previous proofs in the same theory. Alama et al. <ref type="bibr" target="#b2">[3]</ref> use learning in MOR, in particular kernel methods, to determine how similar sentences are to each other and uses these similarity values to find feature weights and to eventually rank the available axioms. SInE <ref type="bibr" target="#b9">[10]</ref> is a heuristic that, similarly to MePo, iteratively adds axioms to the selection that share symbols with the conjecture or already selected axioms. Instead of increasing a pass mark, it only selects axioms that contain symbols whose number of occurrences in the overall theory meets certain requirements. This method proved very successful by executing fast and enabling about as many proofs as some learning methods. Because of saving intermediate information in a database, our implementation of SInE is very efficient for consecutive runs, although because of the implementation in Ruby and because of being bound to a relational database the first run performs slower than an implementation with native/compiled code such as it exists directly in Vampire or E. One notable feature is the prover-independent operability of the axiom selection. This implementation is usable with any prover that interfaces with Hets.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="7">Conclusions and Future Work</head><p>An implementation of axiom selection heuristics was presented: the already existing SInE and two methods based on frequent item set mining. These are implemented in the combination of the web application Ontohub and Hets and run independently of the selected prover, which is a first step towards an implementation of logicindependent axiom selections in Ontohub. Currently, this implementation is compatible to every Hets-interfaced first-order prover. The evaluation of the selection methods showed once again the effectiveness of the SInE algorithm but also revealed that frequent item set mining is not an appropriate tool for selecting axioms because of the slow computation of frequent item sets.</p><p>Future work in this field should extend the feature of independence such that the axiom selections operate independently of the logic as well. A new evaluation could feature a comparison between SInE as it is implemented in provers to the SInE implementation of Ontohub, measuring the performance of consecutive axiom selections that are applied to the same theory (with different conjectures) such that the commonness values can be read from the database. Also learning methods could be incorporated into the selection, e.g. learning the best parameters for SInE or entirely learning-based methods similar to MaSh or MOR could be incorporated. This is very promising in the context of Ontohub because of its repository structure which stores information on every logical theory including proof attempts -both successful and failed.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Definition 2 . 2</head><label>22</label><figDesc>Let T = {t 1 , . . . , t n } be a transaction database, I ⊆ B an item set of an item base. A transaction t ∈ T covers I iff I ⊆ t. We define the multiset K T (I) . . = {t ∈ T | I ⊆ t} with the characteristic ∀t ∈ K T (I) : multiplicity K T (I) (t) = multiplicity T (t) meaning that each element of K T (I) occurs as many times in K T (I) as it occurs in T . K T (I) is called the cover of I with respect to T .</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Definition 2. 4</head><label>4</label><figDesc>Given the size of the transaction base n ∈ N an item base B = {i 1 , . . . , i m } a transaction database T = {t 1 , . . . , t n } and the minimum support of either s min ∈ {0, . . . , n} ⊂ N or σ min ∈ [0, 1] ⊂ R frequent item set mining is about finding the set of frequent item sets:</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2"><head>Definition 3 . 4</head><label>34</label><figDesc>Let s min ∈ N and σ min ∈ [0, 1] ⊆ R be a minimum absolute respectively relative support. Let T = (A, C) be a theory consisting of a set of axioms A and a set of conjectures C. Let the multiset T = {symbols(ϕ) | ϕ ∈ A ∪ C} be a transaction database and let the set B = ϕ∈A∪C symbols(ϕ)</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_4"><head>Figure 1 :</head><label>1</label><figDesc>Figure 1: Performance of the provers in MPTP2078 using SInE</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_6"><head>Figure 2 :</head><label>2</label><figDesc>Figure 2: Performance of the provers in MPTP2078 using SInE with Frequent Symbol Set Mining Benchmark Size.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_8"><head>Figure 3 :</head><label>3</label><figDesc>Figure 3: Performance of the provers in MPTP2078 with the Simple Axiom Selection using Frequent Item Set</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_9"><head>Figure 2</head><label>2</label><figDesc>Figure2clearly shows that there is no proving performance gain by SInE with Frequent Symbol Set Mining. Not only do both provers perform maximally as well as without the axiom selection but also the selection itself is cancelled frequently due to timeouts. The number of 'CSAS' results increases for some parametrisations, but regarding there is such a high amount of selection timeouts, this can be ignored. In total, 475 MPTP2078 problems could be solved using SInE with Frequent Symbol Set Mining, only 35 of which were not solved without an axiom selection.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_11"><head>Figure 4 :</head><label>4</label><figDesc>Figure 4: Runtime of axiom selection methods</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head></head><label></label><figDesc>on frequent item set mining. Let B = {i 1 , . . . , i m } be a set of items. B is called the item base. A subset I ⊆ B of the item base is called an item set. A multiset 4 T = {t 1 , . . . , t n } with ∀m ∈ {1, . . . , k} : t m ⊆ B is called a transaction database over B. An element t m of T is called a transaction over B.</figDesc><table><row><cell>Definition 2.1</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Table 1 :</head><label>1</label><figDesc>Parameters used in the evaluation for each axiom selection method considered not effective if fewer conjectures can be proven using it than without using it in the chainy category. It is possible that a selection hides axioms that are relevant for a proof and, hence, leads to no conclusion. However, a well performing selection should enable proving more conjectures by selecting all the relevant axioms and hiding only irrelevant ones.</figDesc><table><row><cell>An axiom selection is</cell></row></table></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="1" xml:id="foot_0">Git is a popular decentralised version control system, usually utilised in software development. Many open source software projects use git in combination with Github: https://github.com (last checked: 13 June</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="2016" xml:id="foot_1">).<ref type="bibr" target="#b1">2</ref> Details on DOL and its background can be found on http://dol-omg.org (last checked: 13 June 2016).<ref type="bibr" target="#b2">3</ref> Details on HETS can be found on http://hets.eu (last checked: 13 June 2016).</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="4" xml:id="foot_2">A multiset (also called a bag) M is an unordered collection of elements. It can contain the same elements multiple times. How many times an element is included is given by the function multiplicity M : M → N.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="5" xml:id="foot_3">The used SInE version and more information about it is available at http://www.cs.man.ac.uk/ ~hoderk/sine/. Last checked: 13 June 2016.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="6" xml:id="foot_4">The FP-Growth implementations sources or binaries for various systems can be downloaded from http://borgelt.net/fpgrowth. html (last checked: 13 June 2016).</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="7" xml:id="foot_5">Information about the MPTP2078 benchmark is available on http://wiki.mizar.org/twiki/bin/view/Mizar/MpTP2078 (last checked: 13 June 2016).</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="8" xml:id="foot_6">Our modified SZS ontology can be found on http://ontohub.org/meta/proof_statuses.</note>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<monogr>
		<title level="m" type="main">Frequent Pattern Mining</title>
		<author>
			<persName><forename type="first">C</forename><surname>Charu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jiawei</forename><surname>Aggarwal</surname></persName>
		</author>
		<author>
			<persName><surname>Han</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2014">2014</date>
			<publisher>Springer Publishing Company, Incorporated</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Fast Algorithms for Mining Association Rules</title>
		<author>
			<persName><forename type="first">Rakesh</forename><surname>Agrawal</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Ramakrishnan</forename><surname>Srikant</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proc. 20th int. conf. very large data bases, VLDB</title>
				<meeting>20th int. conf. very large data bases, VLDB</meeting>
		<imprint>
			<date type="published" when="1994">1994</date>
			<biblScope unit="volume">1215</biblScope>
			<biblScope unit="page" from="487" to="499" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Premise Selection for Mathematics by Corpus Analysis and Kernel Methods</title>
		<author>
			<persName><forename type="first">Jesse</forename><surname>Alama</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Tom</forename><surname>Heskes</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Daniel</forename><surname>Kühlwein</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Evgeni</forename><surname>Tsivtsivadze</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Josef</forename><surname>Urban</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Automated Reasoning</title>
		<imprint>
			<biblScope unit="volume">52</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page" from="191" to="213" />
			<date type="published" when="2014">2014</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">CASL: The Common Algebraic Specification Language</title>
		<author>
			<persName><forename type="first">Egidio</forename><surname>Astesiano</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Michel</forename><surname>Bidoit</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Hélene</forename><surname>Kirchner</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Bernd</forename><surname>Krieg-Brückner</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Peter</forename><forename type="middle">D</forename><surname>Mosses</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Donald</forename><surname>Sannella</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Andrzej</forename><surname>Tarlecki</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Theoretical Computer Science</title>
		<imprint>
			<biblScope unit="volume">286</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page" from="153" to="196" />
			<date type="published" when="2002">2002</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Darwin: A Theorem Prover for the Model Evolution Calculus</title>
		<author>
			<persName><forename type="first">Peter</forename><surname>Baumgartner</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Alexander</forename><surname>Fuchs</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Cesare</forename><surname>Tinelli</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">IJCAR Workshop on Empirically Successful First Order Reasoning (ESFOR (aka S4))</title>
		<title level="s">Electronic Notes in Theoretical Computer Science</title>
		<editor>
			<persName><forename type="first">Stephan</forename><surname>Schulz</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Geoff</forename><surname>Sutcliffe</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Tanel</forename><surname>Tammet</surname></persName>
		</editor>
		<imprint>
			<date type="published" when="2004">2004</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Sledgehammer: Judgement Day</title>
		<author>
			<persName><forename type="first">Sascha</forename><surname>Böhme</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Tobias</forename><surname>Nipkow</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Automated Reasoning</title>
				<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2010">2010</date>
			<biblScope unit="page" from="107" to="121" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">Frequent Pattern Mining</title>
		<author>
			<persName><forename type="first">Christian</forename><surname>Borgelt</surname></persName>
		</author>
		<ptr target="http://www.borgelt.net/teach/fpm/slides.html" />
	</analytic>
	<monogr>
		<title level="m">Lecture slides</title>
				<imprint>
			<date type="published" when="2016-06-13">13 June 2016</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<monogr>
		<title level="m" type="main">The Neon Ontology Engineering Toolkit</title>
		<author>
			<persName><forename type="first">Peter</forename><surname>Haase</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Holger</forename><surname>Lewen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Rudi</forename><surname>Studer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Thanh</forename><surname>Duc</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Michael</forename><surname>Tran</surname></persName>
		</author>
		<author>
			<persName><surname>Erdmann</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Enrico</forename><surname>Mathieu Daquin</surname></persName>
		</author>
		<author>
			<persName><surname>Motta</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2008">2008</date>
			<publisher>WWW</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Mining Frequent Patterns Without Candidate Generation</title>
		<author>
			<persName><forename type="first">Jiawei</forename><surname>Han</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jian</forename><surname>Pei</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Yiwen</forename><surname>Yin</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">ACM Sigmod Record</title>
		<imprint>
			<biblScope unit="volume">29</biblScope>
			<biblScope unit="page" from="1" to="12" />
			<date type="published" when="2000">2000</date>
			<publisher>ACM</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">Sine Qua Non for Large Theory Reasoning</title>
		<author>
			<persName><forename type="first">Krystof</forename><surname>Hoder</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Andrei</forename><surname>Voronkov</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Automated Deduction -CADE-23 -23rd International Conference on Automated Deduction</title>
				<meeting><address><addrLine>Wroclaw, Poland</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2011-08-05">July 31 -August 5, 2011. 2011</date>
			<biblScope unit="page" from="299" to="314" />
		</imprint>
	</monogr>
	<note>Proceedings</note>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">MaSh: Machine Learning for Sledgehammer</title>
		<author>
			<persName><forename type="first">Jasmin</forename><forename type="middle">Christian</forename><surname>Daniel Kühlwein</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Cezary</forename><surname>Blanchette</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Josef</forename><surname>Kaliszyk</surname></persName>
		</author>
		<author>
			<persName><surname>Urban</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Interactive Theorem Proving</title>
				<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2013">2013</date>
			<biblScope unit="page" from="35" to="50" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<title level="a" type="main">Ontohub -version control, linked data and theorem proving for ontologies</title>
		<author>
			<persName><forename type="first">Eugen</forename><surname>Kuksa</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Till</forename><surname>Mossakowski</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">FOIS</title>
				<imprint>
			<date type="published" when="2016">2016</date>
		</imprint>
	</monogr>
	<note>To appear</note>
</biblStruct>

<biblStruct xml:id="b12">
	<analytic>
		<title level="a" type="main">Lightweight Relevance Filtering for Machine-Generated Resolution Problems</title>
		<author>
			<persName><forename type="first">Jia</forename><surname>Meng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Lawrence</forename><forename type="middle">C</forename><surname>Paulson</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Applied Logic</title>
		<imprint>
			<biblScope unit="volume">7</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="41" to="57" />
			<date type="published" when="2009">2009</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<monogr>
		<title level="m" type="main">Heterogeneous Specification and the Heterogeneous Tool Set</title>
		<author>
			<persName><forename type="first">Till</forename><surname>Mossakowski</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2005">2005</date>
		</imprint>
		<respStmt>
			<orgName>University of Bremen Germany</orgName>
		</respStmt>
	</monogr>
	<note type="report_type">Habilitation thesis</note>
</biblStruct>

<biblStruct xml:id="b14">
	<analytic>
		<title level="a" type="main">The Distributed Ontology, Modeling, and Specification Language -DOL</title>
		<author>
			<persName><forename type="first">Till</forename><surname>Mossakowski</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Mihai</forename><surname>Codescu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Fabian</forename><surname>Neuhaus</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Oliver</forename><surname>Kutz</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">The Road to Universal Logic, volume II of Studies in Universal Logic</title>
				<editor>
			<persName><forename type="first">A</forename><surname>Koslow</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">A</forename><surname>Buchsbaum</surname></persName>
		</editor>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2015">2015</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b15">
	<monogr>
		<title level="m" type="main">Isabelle/HOL: A Proof Assistant for Higher-Order Logic</title>
		<author>
			<persName><forename type="first">Tobias</forename><surname>Nipkow</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Lawrence</forename><forename type="middle">C</forename><surname>Paulson</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Markus</forename><surname>Wenzel</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2002">2002</date>
			<publisher>Springer Science &amp; Business Media</publisher>
			<biblScope unit="volume">2283</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b16">
	<analytic>
		<title level="a" type="main">BioPortal: Ontologies and Integrated Data Resources at the Click of a Mouse</title>
		<author>
			<persName><forename type="first">Natalya</forename><forename type="middle">F</forename><surname>Noy</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Nigam</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Patricia</forename><forename type="middle">L</forename><surname>Shah</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Benjamin</forename><surname>Whetzel</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Michael</forename><surname>Dai</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Nicholas</forename><surname>Dorf</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Clement</forename><surname>Griffith</surname></persName>
		</author>
		<author>
			<persName><surname>Jonquet</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Margaret-Anne</forename><surname>Daniel L Rubin</surname></persName>
		</author>
		<author>
			<persName><surname>Storey</surname></persName>
		</author>
		<author>
			<persName><surname>Christopher G Chute</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Nucleic acids research</title>
		<imprint>
			<biblScope unit="page">440</biblScope>
			<date type="published" when="2009">2009</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b17">
	<monogr>
		<title level="m" type="main">Three Years of Experience With Sledgehammer, a Practical Link Between Automatic and Interactive Theorem Provers</title>
		<author>
			<persName><forename type="first">C</forename><surname>Lawrence</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jasmin</forename><forename type="middle">Christian</forename><surname>Paulson</surname></persName>
		</author>
		<author>
			<persName><surname>Blanchette</surname></persName>
		</author>
		<idno>IWIL-2010</idno>
		<imprint>
			<date type="published" when="2010">2010</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b18">
	<analytic>
		<title level="a" type="main">The Design and Implementation of VAMPIRE</title>
		<author>
			<persName><forename type="first">Alexandre</forename><surname>Riazanov</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Andrei</forename><surname>Voronkov</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">AI communications</title>
		<imprint>
			<biblScope unit="volume">15</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page" from="91" to="110" />
			<date type="published" when="2002">2002</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b19">
	<analytic>
		<title level="a" type="main">An Overview of the Mizar Project</title>
		<author>
			<persName><forename type="first">Piotr</forename><surname>Rudnicki</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 1992 Workshop on Types for Proofs and Programs</title>
				<meeting>the 1992 Workshop on Types for Proofs and Programs</meeting>
		<imprint>
			<date type="published" when="1992">1992</date>
			<biblScope unit="page" from="311" to="330" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b20">
	<analytic>
		<title level="a" type="main">System Description: E 1</title>
		<author>
			<persName><forename type="first">Stephan</forename><surname>Schulz</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proc. of the 19th LPAR</title>
				<editor>
			<persName><forename type="first">Ken</forename><surname>Mcmillan</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Aart</forename><surname>Middeldorp</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">Andrei</forename><surname>Voronkov</surname></persName>
		</editor>
		<meeting>of the 19th LPAR<address><addrLine>Stellenbosch</addrLine></address></meeting>
		<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2013">2013</date>
			<biblScope unit="volume">8312</biblScope>
			<biblScope unit="page" from="735" to="743" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b21">
	<analytic>
		<title level="a" type="main">The SZS Ontologies for Automated Reasoning Software</title>
		<author>
			<persName><forename type="first">G</forename><surname>Sutcliffe</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the LPAR Workshops: Knowledge Exchange: Automated Provers and Proof Assistants, and The 7th International Workshop on the Implementation of Logics, number 418 in CEUR Workshop Proceedings</title>
				<editor>
			<persName><forename type="first">G</forename><surname>Sutcliffe</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">P</forename><surname>Rudnicki</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">R</forename><surname>Schmidt</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">B</forename><surname>Konev</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">S</forename><surname>Schulz</surname></persName>
		</editor>
		<meeting>the LPAR Workshops: Knowledge Exchange: Automated Provers and Proof Assistants, and The 7th International Workshop on the Implementation of Logics, number 418 in CEUR Workshop Proceedings</meeting>
		<imprint>
			<date type="published" when="2008">2008</date>
			<biblScope unit="page" from="38" to="49" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b22">
	<analytic>
		<title level="a" type="main">The 4th ijcar automated theorem proving system competition-casc-j4</title>
		<author>
			<persName><forename type="first">Geoff</forename><surname>Sutcliffe</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Ai Communications</title>
		<imprint>
			<biblScope unit="volume">22</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page" from="59" to="72" />
			<date type="published" when="2009">2009</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b23">
	<analytic>
		<title level="a" type="main">Proving Harder Theorems by Axiom Reduction</title>
		<author>
			<persName><forename type="first">Geoff</forename><surname>Sutcliffe</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Alexander</forename><surname>Dvorskỳ</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">FLAIRS Conference</title>
				<imprint>
			<date type="published" when="2003">2003</date>
			<biblScope unit="page" from="108" to="113" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b24">
	<analytic>
		<title level="a" type="main">SRASS -A Semantic Relevance Axiom Selection System</title>
		<author>
			<persName><forename type="first">Geoff</forename><surname>Sutcliffe</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Yury</forename><surname>Puzis</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Automated Deduction-CADE-21</title>
				<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2007">2007</date>
			<biblScope unit="page" from="295" to="310" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b25">
	<monogr>
		<title level="m" type="main">Distributed Constraint Problem Solving and Reasoning in Multi-Agent Systems</title>
		<author>
			<persName><forename type="first">Geoff</forename><surname>Sutcliffe</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Jürgen</forename><surname>Zimmer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Stephan</forename><surname>Schulz</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2004">2004</date>
			<biblScope unit="volume">112</biblScope>
			<biblScope unit="page" from="201" to="215" />
		</imprint>
	</monogr>
	<note>TSTP Data-Exchange Formats for Automated Theorem Proving Tools</note>
</biblStruct>

<biblStruct xml:id="b26">
	<monogr>
		<title level="m" type="main">Git: Fast Version Control System</title>
		<author>
			<persName><forename type="first">Linus</forename><surname>Torvalds</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Junio</forename><surname>Hamano</surname></persName>
		</author>
		<ptr target="http://git-scm.comlastchecked:13" />
		<imprint>
			<date type="published" when="2010-06">2010. June 2016</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b27">
	<analytic>
		<title level="a" type="main">SPASS Version 3.5</title>
		<author>
			<persName><forename type="first">Christoph</forename><surname>Weidenbach</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Dilyana</forename><surname>Dimova</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Arnaud</forename><surname>Fietzke</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Rohit</forename><surname>Kumar</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Martin</forename><surname>Suda</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Patrick</forename><surname>Wischnewski</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Automated Deduction-CADE-22</title>
				<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2009">2009</date>
			<biblScope unit="page" from="140" to="145" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b28">
	<analytic>
		<title level="a" type="main">New Algorithms for Fast Discovery of Association Rules</title>
		<author>
			<persName><forename type="first">Mohammed</forename><surname>Javeed</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Zaki</forename></persName>
		</author>
		<author>
			<persName><forename type="first">Srinivasan</forename><surname>Parthasarathy</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Mitsunori</forename><surname>Ogihara</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Wei</forename><surname>Li</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">KDD</title>
		<imprint>
			<biblScope unit="volume">97</biblScope>
			<biblScope unit="page" from="283" to="286" />
			<date type="published" when="1997">1997</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b29">
	<analytic>
		<title level="a" type="main">The MathServe System for Semantic Web Reasoning Services</title>
		<author>
			<persName><forename type="first">Jürgen</forename><surname>Zimmer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Serge</forename><surname>Autexier</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Automated Reasoning</title>
				<imprint>
			<publisher>Springer</publisher>
			<date type="published" when="2006">2006</date>
			<biblScope unit="page" from="140" to="144" />
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
