-
Implement algorithms for maximum a posteriori inference, that is, finding the probable interpretation of a selected set of facts. Implement at least a brute-force algorithm and an algorithm that calls…
-
The following code (also attached) gives the attached 27 answer sets executed with "clingo -n 0 ":
```
a(1..3).
b(1..3).
{c(X, Y) : b(Y)} :- a(X).
:- a(X), not c(X, _).
:- a(X), c(X, Y1), c(…
-
If B is a build-only dependency of A, and C is a build-only dependency of B, then C shouldn't be required by A if B already exists. However, with the `clingo` concretizer, C still shows up in the conc…
-
- Currently there is no way to detect if the program was startet with --text in the API.
- It would be nice if the configuration file would also handle options added by the user via the API.
-
As it is now, the system only writes the output of clingo to `output/stdout.txt`, but not all the printout about pre-processing that is dumped into console.
Can we also leave all that in a file und…
-
According to https://github.com/potassco/clingo/issues/112, there is a key to suppress warnings about undefined atoms. This can be utilized in many cases for code simplifications, especially in someth…
-
Consider the following N-Queens encoding:
```
number_of_queens is a constant equal to 8.
Row goes from 1 to number_of_queens.
Column goes from 1 to number_of_queens.
Every row can have a qu…
-
Tasks from #778 that still remain:
- [x] The shared TPLs are currently located at /usr/WS1/axom/libs/toss_4_x86_64_ib_cray_temp_dir/. The expected build_src.py default, /usr/WS1/axom/libs/toss_4_…
-
It would be nice if Alpha supported constants whose values are assigned via the command line (as does clingo).
Then, we could write programs like the following:
`time(0..maxtime).`
The value of max…
-
Hi, I try to run `yarn start` in the demo folder and get the following error in the browser's console:
```
Uncaught (in promise) abort({}). Build with -s ASSERTIONS=1 for more info.
```
How can I …