Skip to content

Commit

Permalink
Renamed files for convenience
Browse files Browse the repository at this point in the history
  • Loading branch information
Azzaare committed Aug 7, 2024
1 parent b617c80 commit cdafa88
Show file tree
Hide file tree
Showing 51 changed files with 58 additions and 99 deletions.
99 changes: 51 additions & 48 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ using ConstraintModels
# Learning
using CompositionalNetworks
using QUBOConstraints
# using ConstraintsTranslator
using ConstraintLearning

# Constraint-Based Local Search
Expand All @@ -28,6 +29,7 @@ makedocs(;
PerfChecker,
ConstraintCommons, ConstraintDomains, Constraints, ConstraintModels,
CompositionalNetworks, QUBOConstraints, ConstraintLearning,
# CompositionalNetworks, QUBOConstraints, ConstraintsTranslator, ConstraintLearning,
LocalSearchSolvers, CBLS,
MetaStrategist,
],
Expand All @@ -45,81 +47,82 @@ makedocs(;
"Home" => "index.md",
"Constraint Programming" => [
"Part 1: Basics" => [
"Introduction" => "cp/intro.md",
"CP 101" => "cp/cp101.md",
"Optimization(s)?" => "cp/opt.md",
"Getting Started" => "cp/getting_started.md",
"Ecosystem" => "cp/ecosystem.md",
"Introduction" => "cp/00_intro.md",
"CP 101" => "cp/10_cp101.md",
"Optimization(s)?" => "cp/20_opt.md",
"Getting Started" => "cp/30_getting_started.md",
"Ecosystem" => "cp/40_ecosystem.md",
],
"Part 2: Advanced" => [
"CP Techniques" => "cp/advanced.md",
"Applications" => "cp/applications.md",
"Models" => "cp/models.md",
"Tutorials&XP" => "cp/tuto_xp.md",
"Contributing" => "cp/contribution.md",
"CP Techniques" => "cp/50_advanced.md",
"Applications" => "cp/60_applications.md",
"Models" => "cp/70_models.md",
"Tutorials&XP" => "cp/80_tuto_xp.md",
"Contributing" => "cp/90_contribution.md",
],
],
"Modeling Toolkit" => [
"Introduction" => "constraints/intro.md",
"Variables and Domains" => "constraints/variables_and_domains.md",
"Introduction" => "constraints/00_intro.md",
"Variables and Domains" => "constraints/10_variables_and_domains.md",
"Constraints" => [
"Basics" => "constraints/constraints.md",
"Generic Constraints" => "constraints/generic_constraints.md",
"Language Constraints" => "constraints/language_constraints.md",
"Comparison Constraints" => "constraints/comparison_constraints.md",
"Counting and Summing Constraints" => "constraints/counting_summing_constraints.md",
"Connection Constraints" => "constraints/connection_constraints.md",
"Packing and Scheduling Constraints" => "constraints/packing_scheduling_constraints.md",
"Graph Constraints" => "constraints/graph_constraints.md",
"Elementary Constraints" => "constraints/elementary_constraints.md",
"Basics" => "constraints/20_constraints.md",
"Generic Constraints" => "constraints/21_generic_constraints.md",
"Language Constraints" => "constraints/22_language_constraints.md",
"Comparison Constraints" => "constraints/23_comparison_constraints.md",
"Counting and Summing Constraints" => "constraints/24_counting_summing_constraints.md",
"Connection Constraints" => "constraints/25_connection_constraints.md",
"Packing and Scheduling Constraints" => "constraints/26_packing_scheduling_constraints.md",
"Graph Constraints" => "constraints/27_graph_constraints.md",
"Elementary Constraints" => "constraints/28_elementary_constraints.md",
],
"Model Catalog" => "constraints/constraint_models.md",
"Model Catalog" => "constraints/40_constraint_models.md",
"Internals" => [
"ConstraintCommons.jl" => "constraints/constraint_commons.md",
"ConstraintDomains.jl" => "constraints/constraint_domains.md",
"Constraints.jl" => "constraints/constraints_jl.md",
"ConstraintCommons.jl" => "constraints/60_constraint_commons.md",
"ConstraintDomains.jl" => "constraints/61_constraint_domains.md",
"Constraints.jl" => "constraints/62_constraints_jl.md",
],
],
"Learning" => [
"Introduction" => "learning/intro.md",
"Introduction" => "learning/00_intro.md",
"CompositionalNetworks.jl" => [
"About ICNs" => "learning/compositional_networks.md",
"Layers" => "learning/layers.md",
"Transformations Layer" => "learning/transformation.md",
"Arithmetic Layer" => "learning/arithmetic.md",
"Aggregation Layer" => "learning/aggregation.md",
"Comparison Layer" => "learning/comparison.md",
"About ICNs" => "learning/10_compositional_networks.md",
"Layers" => "learning/11_layers.md",
"Transformations Layer" => "learning/12_transformation.md",
"Arithmetic Layer" => "learning/13_arithmetic.md",
"Aggregation Layer" => "learning/14_aggregation.md",
"Comparison Layer" => "learning/15_comparison.md",
],
"QUBOConstraints.jl" => [
"Model as QUBO" => "learning/qubo_constraints.md",
"Encoding" => "learning/qubo_encoding.md",
"Learning" => "learning/qubo_learning.md",
"Model as QUBO" => "learning/20_qubo_constraints.md",
"Encoding" => "learning/21_qubo_encoding.md",
"Learning" => "learning/22_qubo_learning.md",
],
"ConstraintLearning.jl" => "learning/constraint_learning.md",
"ConstraintsTranslator.jl" => "learning/30_constraints_translator.md",
"ConstraintLearning.jl" => "learning/90_constraint_learning.md",
],
"Solvers" => [
"Introduction" => "solvers/intro.md",
"Introduction" => "solvers/00_intro.md",
"JuMPed" => [
"CBLS.jl" => "solvers/cbls.md",
"CBLS.jl" => "solvers/10_cbls.md",
],
"Others" => [
"LocalSearchSolvers.jl" => "solvers/local_search_solvers.md",
"LocalSearchSolvers.jl" => "solvers/60_local_search_solvers.md",
],
],
"Meta Strategist" => [
"MetaStrategist.jl" => "meta/meta_strategist.md",
"MetaStrategist.jl" => "meta/00_meta_strategist.md",
],
"Performance Checking" => [
"PerfChecker.jl" => "perf/perf_checker.md",
"Tutorial" => "perf/tutorial.md",
"Interface" => "perf/perf_interface.md",
"BenchmarkToolsExt" => "perf/benchmark_ext.md",
"ChairmarksExt" => "perf/chairmarks_ext.md",
"API" => "perf/api.md"
"PerfChecker.jl" => "perf/00_perf_checker.md",
"Tutorial" => "perf/10_tutorial.md",
"Interface" => "perf/20_perf_interface.md",
"BenchmarkToolsExt" => "perf/30_benchmark_ext.md",
"ChairmarksExt" => "perf/40_chairmarks_ext.md",
"API" => "perf/90_api.md"
],
"API" => [
"Public" => "public_api.md",
"Full" => "full_api.md",
"Public" => "api/00_public.md",
"Full" => "api/10_full.md",
],
],
warnonly=true,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
51 changes: 0 additions & 51 deletions docs/src/index-old.md

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions docs/src/learning/30_constraints_translator.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ConstraintsTranslator.jl

Documentation for `ConstraintsTranslator.jl`.

<!-- ```@autodocs
Modules=[ConstraintsTranslator]
``` -->
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit cdafa88

Please sign in to comment.