Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | feat: implicitly propagate configs to approximations | Federico Igne | 2022-06-01 | 1 | -1/+1 |
| | |||||
* | refactor: move RSAOntology class under ontology package | Federico Igne | 2022-05-19 | 1 | -1/+1 |
| | |||||
* | Refactor code | Federico Igne | 2022-05-09 | 1 | -27/+16 |
| | |||||
* | Ignore unparsable queries and notify the user | Federico Igne | 2021-11-25 | 1 | -1/+2 |
| | |||||
* | Add support for directory of query files | Federico Igne | 2021-11-11 | 1 | -4/+2 |
| | |||||
* | Add option to specify the approximation algorithm from the CLI | Federico Igne | 2021-11-03 | 1 | -2/+2 |
| | |||||
* | Avoid generating a JSON string before writing to file | Federico Igne | 2021-11-03 | 1 | -6/+5 |
| | | | | This solve a crash when considering a huge amount of queries. | ||||
* | Drop filtering tuple table when done with a query | Federico Igne | 2021-11-01 | 1 | -17/+0 |
| | | | | | This avoids running out of memory on RDFox side when executing a use amount of queries. | ||||
* | Finalise dbpedia functional testing | Federico Igne | 2021-10-30 | 1 | -0/+1 |
| | |||||
* | Rework RDFox simulation to be more modular | Federico Igne | 2021-10-20 | 1 | -10/+11 |
| | | | | This will help with faster testing and debugging. | ||||
* | Add script to load debug data to RDFox | Federico Igne | 2021-10-05 | 1 | -1/+1 |
| | |||||
* | Rework CLI configs | Federico Igne | 2021-10-03 | 1 | -124/+10 |
| | |||||
* | Move to os-lib for filesystem operations | Federico Igne | 2021-10-03 | 1 | -22/+28 |
| | |||||
* | Expose logger level to CLI | Federico Igne | 2021-10-02 | 1 | -4/+23 |
| | |||||
* | Write answers to output file | Federico Igne | 2021-09-29 | 1 | -1/+15 |
| | |||||
* | Add import of multiple queries | Federico Igne | 2021-09-29 | 1 | -30/+26 |
| | |||||
* | Add new fresh data factory | Federico Igne | 2021-08-06 | 1 | -2/+2 |
| | | | | This will help write more significant test. | ||||
* | Change spelling: LowerBound to Lowerbound | Federico Igne | 2021-07-29 | 1 | -2/+2 |
| | |||||
* | Merge branch 'approximation'v0.2.0 | Federico Igne | 2021-07-27 | 1 | -17/+24 |
|\ | |||||
| * | Rework class structure to match more general workflow | Federico Igne | 2021-07-27 | 1 | -12/+12 |
| | | | | | | | | | | | | | | | | The major change is the introduction of a new class Ontology (superclass of RSAOntology) that contains all those operation that we would like to perform on *any* OWL 2 ontology. Approximation is also generic on the return type, allowing for example intermediate steps (or chaining of approximations). | ||||
| * | Review main workflow | Federico Igne | 2021-07-22 | 1 | -14/+12 |
| | | |||||
| * | Generalize dependency graph generation | Federico Igne | 2021-07-20 | 1 | -0/+10 |
| | | | | | | | | | | | | | | | | | | | | The code to generate the dependency graph has been moved in the companion object of the generic OWL 2 ontology wrapper Ontology. This signals that we could potentially build a dependency graph for any ontology (and not only RSA ontology). Moreover, a dependency graph can be build for an Ontology object or an arbitrary TBox and Abox. | ||||
| * | Merge branch 'master' into approximation | Federico Igne | 2021-06-23 | 1 | -0/+14 |
| |\ | |||||
| * | | Fix minor compilation errors | Federico Igne | 2021-06-01 | 1 | -2/+1 |
| | | | |||||
| * | | Multiple fixes | Federico Igne | 2021-05-31 | 1 | -2/+2 |
| | | | |||||
* | | | Add Apache License 2.0 | Federico Igne | 2021-06-30 | 1 | -0/+16 |
| |/ |/| | |||||
* | | Fix automatic query building | Federico Igne | 2021-06-23 | 1 | -0/+14 |
|/ | | | | | The API for the SKOLEM operator is changed in RDFox but the helper functions using it were not ported to the new syntax. | ||||
* | Update minor details in documentation | Federico Igne | 2021-05-31 | 1 | -0/+2 |
| | |||||
* | Streamline RSA approximation | Federico Igne | 2021-04-09 | 1 | -76/+24 |
| | |||||
* | Apply minor tweaks | Federico Igne | 2021-04-02 | 1 | -1/+2 |
| | |||||
* | Introduce a better system to handle command line input | Federico Igne | 2021-01-30 | 1 | -58/+142 |
| | |||||
* | Add external script to execute benchmarks and gather results. | Federico Igne | 2021-01-05 | 1 | -1/+1 |
| | |||||
* | Slightly rework main execution | Federico Igne | 2021-01-05 | 1 | -46/+39 |
| | |||||
* | Add additional debug information to query execution | Federico Igne | 2020-12-17 | 1 | -10/+22 |
| | |||||
* | Keep track of answer multiplicity | Federico Igne | 2020-12-09 | 1 | -1/+6 |
| | |||||
* | Add diagnostics for (un)filtered answer ratio | Federico Igne | 2020-12-07 | 1 | -5/+21 |
| | |||||
* | Merge branch 'master' into logger | Federico Igne | 2020-12-07 | 1 | -1/+1 |
|\ | |||||
| * | Change ConjunctiveQuery constructors interface | Federico Igne | 2020-12-07 | 1 | -1/+1 |
| | | | | | | | | | | One of the object constructor was returning an Option. It was weird to have a constructor that would not always return an object. | ||||
* | | Add first implementation of a logger | Federico Igne | 2020-12-07 | 1 | -7/+9 |
|/ | | | | | This is needed mostly for debugging and benchmarking purposes. We tried to make it as "out of the way" as possible. | ||||
* | Fix bug on argument validation | Federico Igne | 2020-11-30 | 1 | -1/+1 |
| | |||||
* | Add ability to pass multiple ontology files on the commandline | Federico Igne | 2020-11-27 | 1 | -8/+9 |
| | |||||
* | Rename `RDFoxHelpers` to `RDFoxUtil` | Federico Igne | 2020-11-24 | 1 | -1/+1 |
| | | | | For a more consistent naming. | ||||
* | Simplify workflow for query execution | Federico Igne | 2020-11-20 | 1 | -179/+7 |
| | | | | Input query is now read from file. | ||||
* | Integrate new ConjunctiveQuery in filtering program computation | Federico Igne | 2020-11-19 | 1 | -5/+4 |
| | |||||
* | Add wrapper class for (boolean) conjunctive queries | Federico Igne | 2020-11-19 | 1 | -4/+4 |
| | |||||
* | Move NI instantiation in FilteringProgram | Federico Igne | 2020-11-19 | 1 | -14/+4 |
| | |||||
* | Reorganize project with Java-like folder structure | Federico Igne | 2020-11-18 | 1 | -0/+249 |