Skip to content

Commit

Permalink
Make documentation compile
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJefferson committed Nov 7, 2019
1 parent 30b34db commit 479bab8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ SetPackageInfo( rec(

PackageName := "BacktrackKit",
Subtitle := "An Extensible, easy to understand backtracking framework",
Version := "0.2",
Date := "27/10/2019", # dd/mm/yyyy format
Version := "0.3",
Date := "07/11/2019", # dd/mm/yyyy format

Persons := [
rec(
Expand All @@ -34,10 +34,10 @@ Persons := [

SourceRepository := rec(
Type := "git",
URL := "https://github.com/ChrisJefferson/BacktrackKit",
URL := "https://github.com/peal/BacktrackKit",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := "https://ChrisJefferson.github.io/BacktrackKit/",
PackageWWWHome := "https://peal.github.io/BacktrackKit/",
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
Expand Down
2 changes: 1 addition & 1 deletion examples/refiner.autodoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ To begin, we will just consider the case where $P=Q$. Then, we need to provide a

* Invariance: Given a permutation $g$ such that $P^g=g$, then $R(ps^g) = R(ps)^g$. Here, we define $ps^g$ as applying $g$ to each point in each cell of `ps`, and we define $(R(ps)^g)(x) := R(ps)(x^g)$.

<TO COMPLETE>
(TO COMPLETE)
3 changes: 3 additions & 0 deletions gap/BacktrackKit.gi
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ InstallMethod(RestoreState, [IsBTKitState, IsObject],
od;
end);

#! @Chapter Implementation
#! @Section Filters

#! @Description
#! Split the cells of the partition stack <A>ps</A>, if possible, according
#! to a given <A>filter</A>. If the filter is <K>fail</K>, or if the split is
Expand Down

0 comments on commit 479bab8

Please sign in to comment.