Skip to content

Commit 67f51ee

Browse files
committed
Update doc with PatternFolds
1 parent 047ac25 commit 67f51ee

File tree

7 files changed

+22
-10
lines changed

7 files changed

+22
-10
lines changed

docs/Manifest.toml

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
julia_version = "1.10.5"
44
manifest_format = "2.0"
5-
project_hash = "c9214e2dba2ff082d61a205904a0de33964d7dfb"
5+
project_hash = "f48021d04a612c69eaeb305defa0e1067166fe92"
66

77
[[deps.ANSIColoredPrinters]]
88
git-tree-sha1 = "574baf8110975760d391c710b6341da1afa48d8c"
@@ -253,8 +253,8 @@ version = "2.4.2"
253253

254254
[[deps.ConstraintCommons]]
255255
deps = ["Dictionaries", "TestItems"]
256-
git-tree-sha1 = "d02bf23ecd60f1c9bf02b6e88e7aae185ece2d04"
257-
repo-rev = "doc"
256+
git-tree-sha1 = "6328878811c5574a5701eb3645b170572339ac28"
257+
repo-rev = "main"
258258
repo-url = "https://github.com/JuliaConstraints/ConstraintCommons.jl.git"
259259
uuid = "e37357d9-0691-492f-a822-e5ea6a920954"
260260
version = "0.2.3"
@@ -1054,7 +1054,9 @@ version = "2.8.1"
10541054

10551055
[[deps.PatternFolds]]
10561056
deps = ["Intervals", "Lazy", "Random", "Reexport", "TestItemRunner", "TestItems"]
1057-
git-tree-sha1 = "21fb4c221aca131474a886a015a3cd5b1a42b6d2"
1057+
git-tree-sha1 = "0698e974b926f0e24019a42fc78fe8498f2f1f04"
1058+
repo-rev = "main"
1059+
repo-url = "https://github.com/JuliaConstraints/PatternFolds.jl.git"
10581060
uuid = "c18a7f1d-76ad-4ce4-950d-5419b888513b"
10591061
version = "0.2.5"
10601062

docs/Project.toml

+1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
1111
DocumenterVitepress = "4710194d-e776-4893-9690-8d956a29c365"
1212
LocalSearchSolvers = "2b10edaa-728d-4283-ac71-07e312d6ccf3"
1313
MetaStrategist = "989f9ba8-86ac-4138-b458-047055bae907"
14+
PatternFolds = "c18a7f1d-76ad-4ce4-950d-5419b888513b"
1415
PerfChecker = "6309bf6b-a531-4b08-891e-8ee981e5c424"
1516
QUBOConstraints = "110b7fcc-6942-4061-a625-86e03d1de7cf"

docs/make.jl

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ using PerfChecker
77

88
# Constraints
99
using ConstraintCommons
10+
using PatternFolds
1011
using ConstraintDomains
1112
using Constraints
1213
using ConstraintModels
@@ -28,8 +29,7 @@ using MetaStrategist
2829
makedocs(;
2930
modules=[
3031
PerfChecker,
31-
ConstraintCommons, ConstraintDomains, Constraints, ConstraintModels,
32-
CompositionalNetworks, QUBOConstraints, ConstraintLearning,
32+
ConstraintCommons, PatternFolds, ConstraintDomains, Constraints, ConstraintModels,
3333
CompositionalNetworks, QUBOConstraints, ConstraintsTranslator, ConstraintLearning,
3434
LocalSearchSolvers, CBLS, #ConstraintExplorer,
3535
MetaStrategist,
@@ -79,8 +79,9 @@ makedocs(;
7979
"Model Catalog" => "constraints/40_constraint_models.md",
8080
"Internals" => [
8181
"ConstraintCommons.jl" => "constraints/60_constraint_commons.md",
82-
"ConstraintDomains.jl" => "constraints/61_constraint_domains.md",
83-
"Constraints.jl" => "constraints/62_constraints_jl.md",
82+
"PatternFolds.jl" => "constraints/61_pattern_folds.md",
83+
"ConstraintDomains.jl" => "constraints/62_constraint_domains.md",
84+
"Constraints.jl" => "constraints/63_constraints_jl.md",
8485
],
8586
],
8687
"Learning" => [
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# PatternFolds.jl
2+
3+
Documentation for `PatternFolds.jl`.
4+
5+
```@autodocs
6+
Modules=[PatternFolds]
7+
```

docs/src/index.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ hero:
1313
actions:
1414
- theme: brand
1515
text: Model, Learn, and Solve!
16-
link: /constraints/intro
16+
link: /constraints/00_intro
1717
- theme: alt
1818
text: View on Github
1919
link: https://github.com/JuliaConstraints/JuliaConstraints.github.io
@@ -60,7 +60,7 @@ features:
6060
<ul>
6161
<li><a href="https://github.com/JuliaConstraints/Compositionalnetworks.jl"><strong>CompositionalNetworks.jl</strong></a> provides interpretable compositional networks (<em>ICN</em>), a combinatorial variant of neural networks that allows the user to obtain interpretable results, unlike regular artificial neural networks.</li>
6262
<li><a href="https://github.com/JuliaConstraints/QUBOConstraints.jl"><strong>QUBOConstraints.jl</strong></a> is a package that can (automatically) learn QUBO matrices from optimization constraints.</li>
63-
<li><strong>ConstraintsTranslator.jl</strong> (tentative name, WIP) is a tool for converting problems expressed in natural language into optimization models.</li>
63+
<li><a href="https://github.com/JuliaConstraints/ConstraintsTranslator.jl"><strong>ConstraintsTranslator.jl</strong> </a> is a tool for converting problems expressed in natural language into optimization models.</li>
6464
<li><a href="https://github.com/JuliaConstraints/ConstraintLearning.jl"><strong>ConstraintLearning.jl</strong></a> is a common interface that integrates the various components outlined above.</li>
6565
</ul>
6666
<h3>Solvers</h3>
@@ -71,6 +71,7 @@ features:
7171
<li><a href="https://github.com/JuliaConstraints/CPLEXCP.jl"><strong>CPLEXCP.jl</strong></a> a Julia interface for CPLEX CP Optimizer.</li>
7272
<li><a href="https://github.com/JuliaConstraints/Chuffed.jl"><strong>Chuffed.jl</strong></a> a wrapper for the constraint-programming solver Chuffed to Julia.</li>
7373
<li><a href="https://github.com/JuliaConstraints/JaCoP.jl"><strong>JaCoP.jl</strong></a> a Julia interface for the JaCoP constraint-programming solver.</li>
74+
<li><a href="https://github.com/JuliaConstraints/ConstraintExplorer.jl"><strong>ConstraintExplorer.jl</strong></a> a MOI/JuMP interface to explore search spaces modeled as CP.</li>
7475
</ul>
7576
<h4>JuMP extras</h4>
7677
<p>Constraint Programming is slowly making steps into the main JuMP components. However, some extra resources are available as</p>

0 commit comments

Comments
 (0)