Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,13 @@ The commit messages of all the commits in your PR should be properly formatted:

Avoid merge commits by using rebase rather than merge when combining branches

### Formatting

Install black formatter (pip install black) and use it in the root directory of the project to format all python files (line length is set to 120):
```
black .
```

## Publications

### The Concept
Expand Down Expand Up @@ -124,8 +131,3 @@ If you use this code for research, please cite:

Michael Heider, Helena Stegherr, Jonathan Wurth, Roman Sraj, and Jörg Hähner. 2022. **Separating Rule Discovery and Global Solution Composition in a Learning Classifier System.** In Genetic and Evolutionary Computation Conference Companion (GECCO ’22 Companion). https://doi.org/10.1145/3520304.3529014



## Formatting

Install black formatter (pip install black) and use it in the root directory of the project to format all python files (black .)
Loading