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
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
# The GAP 4 package `AttributeScheduler'
# The GAP 4 package `AttributeScheduler`

This packages does TODO.
This packages contains methods to construct a graph to compute attributes with dependencies. This means that the graph describes which attribute implies other attributes.

## License
TODO

TODO: License info
## Installation
To use this package, go into your local installation directory for GAP (often located under `~/.gap/` ), and clone this repository in the `pkg/`-subfolder:

cd pkg/
git clone https://github.com/gap-packages/AttributeScheduler

Another option for installation is the use of `PackageManager`:

LoadPackage("PackageManager");
InstallPackage("https://github.com/gap-packages/AttributeScheduler.git");

For using the Package, call

LoadPackage("AttributeScheduler");

to access the package inside a GAP session.