-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from krr-up/sh/update
Sh/update
- Loading branch information
Showing
17 changed files
with
277 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
div.admonition.example { | ||
border-color: hsl(257, 20%, 50%); | ||
background-color: hsl(257, 20%, 80%); | ||
} | ||
|
||
div.admonition.example > .admonition-title { | ||
color: white; | ||
background-color: hsl(257, 20%, 50%); | ||
} | ||
|
||
div.admonition.example > .admonition-title::before { | ||
content: "\f2a7"; | ||
} | ||
|
||
.sidebar-logo { | ||
margin: inherit; | ||
} | ||
.sidebar-logo-container{ | ||
max-width: 20%!important; | ||
margin-top: 0.2rem; | ||
margin-right: 0.2rem; | ||
justify-content: flex-end; | ||
display: flex; | ||
} | ||
.sidebar-brand-text { | ||
text-align: center !important; | ||
align-items: center; | ||
display: inline-flex; | ||
} | ||
|
||
.sidebar-brand { | ||
flex-direction: row !important; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# ASP Encodings | ||
|
||
Descriptions of ASP encodings. | ||
|
||
```{toctree} | ||
instance.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Instance | ||
|
||
## Constants | ||
```{list-table} | ||
:header-rows: 1 | ||
:widths: 25 100 | ||
* - Name | ||
- Description | ||
* - `horizon` | ||
- The description of a constant. | ||
``` | ||
|
||
## Predicates | ||
|
||
### `predicate(X,Y)` | ||
|
||
Description | ||
|
||
```{admonition} Example | ||
```prolog | ||
predicate(1,2). | ||
``` | ||
|
||
### `another_predicate(X)` | ||
|
||
Description | ||
|
||
```{admonition} Example | ||
```prolog | ||
another_predicate(1). | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Installation | ||
|
||
fillname requires Python 3.8+. We recommend version 3.10. | ||
|
||
You can check a successful installation by running | ||
|
||
```shell | ||
fillname -h | ||
``` | ||
|
||
## Installing with pip | ||
|
||
|
||
The python fillname package can be found [here](https://pypi.org/project/fillname/). | ||
|
||
```shell | ||
pip install fillname | ||
``` | ||
|
||
## Development | ||
|
||
### Installing from source | ||
|
||
The project is hosted on [github](https://github.com/potassco/fillname) and can | ||
also be installed from source. | ||
|
||
```{warning} | ||
We recommend this only for development purposes. | ||
``` | ||
|
||
```{note} | ||
The `setuptools` package is required to run the commands below. | ||
``` | ||
|
||
Execute the following command in the top level fillname directory: | ||
|
||
```shell | ||
git clone https://github.com/potassco/fillname | ||
cd fillname | ||
pip install -e .[all] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Quick start | ||
|
||
A simple explanation on how to use the system. | ||
|
||
```shell | ||
fillname -h | ||
``` | ||
|
||
```{tip} | ||
Tips on how to use the system. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# fillname | ||
|
||
An example project template. | ||
|
||
```{toctree} | ||
content/installation.md | ||
content/quickstart.md | ||
content/encodings/index.md | ||
``` |
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.