Compare commits
2 Commits
v0.1.7-rc.
...
v0.1.7-rc.
Author | SHA1 | Date | |
---|---|---|---|
744496d1d9
|
|||
5f771770b3
|
30
CHANGELOG.md
30
CHANGELOG.md
@@ -1,18 +1,14 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
## 0.1.7 RC 2 (2018-04-06)
|
## 0.1.7 (2018-04-05)
|
||||||
|
|
||||||
### Features
|
Features:
|
||||||
|
|
||||||
* support for declaring placeholders with the `#external` directive
|
* support for declaring placeholders with the `#external` directive
|
||||||
|
|
||||||
### Internal
|
|
||||||
|
|
||||||
* drops Boost dependency in favor of the header-only command-line option library [cxxopts](https://github.com/jarro2783/cxxopts)
|
|
||||||
|
|
||||||
## 0.1.6 (2017-06-12)
|
## 0.1.6 (2017-06-12)
|
||||||
|
|
||||||
### Features
|
Features:
|
||||||
|
|
||||||
* unique IDs for all variables (user-defined variables are renamed)
|
* unique IDs for all variables (user-defined variables are renamed)
|
||||||
* support for hiding predicates from completed output by using `#show` statements
|
* support for hiding predicates from completed output by using `#show` statements
|
||||||
@@ -20,7 +16,7 @@
|
|||||||
* command-line option `--parentheses` to fully parenthesize the output
|
* command-line option `--parentheses` to fully parenthesize the output
|
||||||
* adds multiple example instances for experimenting
|
* adds multiple example instances for experimenting
|
||||||
|
|
||||||
### Bug Fixes
|
Bug Fixes:
|
||||||
|
|
||||||
* adds missing error message when attempting to read inaccessible file
|
* adds missing error message when attempting to read inaccessible file
|
||||||
* removes unnecessary parentheses after simplification
|
* removes unnecessary parentheses after simplification
|
||||||
@@ -28,52 +24,52 @@
|
|||||||
|
|
||||||
## 0.1.5 (2017-05-04)
|
## 0.1.5 (2017-05-04)
|
||||||
|
|
||||||
### Bug Fixes
|
Bug Fixes:
|
||||||
|
|
||||||
* fixes lost signs with negated 0-ary predicates
|
* fixes lost signs with negated 0-ary predicates
|
||||||
|
|
||||||
## 0.1.4 (2017-04-12)
|
## 0.1.4 (2017-04-12)
|
||||||
|
|
||||||
### Features
|
Features:
|
||||||
|
|
||||||
* completion of input programs (optional)
|
* completion of input programs (optional)
|
||||||
* command-line option `--complete` to turn on completion
|
* command-line option `--complete` to turn on completion
|
||||||
|
|
||||||
## 0.1.3 (2017-03-30)
|
## 0.1.3 (2017-03-30)
|
||||||
|
|
||||||
### Features
|
Features:
|
||||||
|
|
||||||
* support for anonymous variables
|
* support for anonymous variables
|
||||||
|
|
||||||
### Bug Fixes
|
Bug Fixes:
|
||||||
|
|
||||||
* fixes incorrectly simplified rules with comparisons
|
* fixes incorrectly simplified rules with comparisons
|
||||||
* fixes misleading error message concerning negated, unsupported body literals
|
* fixes misleading error message concerning negated, unsupported body literals
|
||||||
|
|
||||||
## 0.1.2 (2017-03-23)
|
## 0.1.2 (2017-03-23)
|
||||||
|
|
||||||
### Features
|
Features:
|
||||||
|
|
||||||
* simplification of output formulas (optional)
|
* simplification of output formulas (optional)
|
||||||
* command-line option `--simplify` to turn on simplification
|
* command-line option `--simplify` to turn on simplification
|
||||||
|
|
||||||
### Bug Fixes
|
Bug Fixes:
|
||||||
|
|
||||||
* fixes incorrectly translated choice rules with multiple elements in the head aggregate
|
* fixes incorrectly translated choice rules with multiple elements in the head aggregate
|
||||||
|
|
||||||
### Internal
|
Internal:
|
||||||
|
|
||||||
* explicit syntax tree representation for first-order formulas
|
* explicit syntax tree representation for first-order formulas
|
||||||
|
|
||||||
## 0.1.1 (2017-03-06)
|
## 0.1.1 (2017-03-06)
|
||||||
|
|
||||||
### Features
|
Features:
|
||||||
|
|
||||||
* support for choice rules (without guards)
|
* support for choice rules (without guards)
|
||||||
|
|
||||||
## 0.1.0 (2016-11-24)
|
## 0.1.0 (2016-11-24)
|
||||||
|
|
||||||
### Features
|
Features:
|
||||||
|
|
||||||
* initial support for translating rules in *Essential Gringo* (excluding aggregates) to first-order logic formulas
|
* initial support for translating rules in *Essential Gringo* (excluding aggregates) to first-order logic formulas
|
||||||
* command-line option `--color` to autodetect, enable, or disable color output
|
* command-line option `--color` to autodetect, enable, or disable color output
|
||||||
|
@@ -70,7 +70,7 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
if (version)
|
if (version)
|
||||||
{
|
{
|
||||||
std::cout << "anthem version 0.1.7-rc.2" << std::endl;
|
std::cout << "anthem version 0.1.7-rc.1" << std::endl;
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Submodule lib/cxxopts updated: abe9ebd6b4...8893afe13c
Reference in New Issue
Block a user