From b0aee912bf5df7e4f21e7ac65d0dabcf1b8aefc9 Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Sun, 7 Jan 2024 12:53:34 -0500 Subject: [PATCH] Update docs --- docs/A_Guide_To_Propeller.html | 2 +- docs/Adding_Genetic_Operators.html | 2 +- docs/Adding_Problem.html | 2 +- docs/Adding_Selection_Method.html | 2 +- docs/Additional_Instructions.html | 2 +- docs/Downsampling_training_data.html | 23 +++++++++++ docs/Generating_Documentation.html | 2 +- docs/index.html | 40 +++++++++++-------- docs/propeller.downsample.html | 17 ++++++++ docs/propeller.genome.html | 6 +-- docs/propeller.gp.html | 11 +++-- docs/propeller.problems.PSB1.count-odds.html | 2 +- docs/propeller.problems.PSB1.grade.html | 2 +- ...ropeller.problems.PSB1.scrabble-score.html | 2 +- ...ropeller.problems.PSB1.small-or-large.html | 2 +- docs/propeller.problems.PSB2.basement.html | 2 +- ...ropeller.problems.PSB2.bouncing-balls.html | 2 +- docs/propeller.problems.PSB2.bowling.html | 2 +- docs/propeller.problems.PSB2.camel-case.html | 2 +- docs/propeller.problems.PSB2.dice-game.html | 2 +- docs/propeller.problems.PSB2.find-pair.html | 13 ++++++ docs/propeller.problems.PSB2.fizz-buzz.html | 4 +- docs/propeller.problems.PSB2.fuel-cost.html | 4 +- docs/propeller.problems.PSB2.gcd.html | 6 ++- docs/propeller.problems.PSB2.luhn.html | 2 +- ...peller.problems.PSB2.middle-character.html | 2 +- ...propeller.problems.PSB2.paired-digits.html | 2 +- ...propeller.problems.PSB2.shopping-list.html | 2 +- docs/propeller.problems.PSB2.snow-day.html | 2 +- ...propeller.problems.PSB2.solve-boolean.html | 2 +- docs/propeller.problems.PSB2.spin-words.html | 2 +- ...propeller.problems.PSB2.square-digits.html | 2 +- ...ler.problems.PSB2.substitution-cipher.html | 2 +- docs/propeller.problems.PSB2.twitter.html | 2 +- docs/propeller.problems.UBall5D.html | 13 ++++++ docs/propeller.problems.boolean.mul3.html | 9 +++++ docs/propeller.problems.boolean.mul4.html | 9 +++++ ...propeller.problems.complex-regression.html | 2 +- docs/propeller.problems.data-creation.html | 19 +++++++++ docs/propeller.problems.float-regression.html | 2 +- ...propeller.problems.integer-regression.html | 6 +-- ...peller.problems.simple-classification.html | 2 +- ...propeller.problems.software.number-io.html | 2 +- .../propeller.problems.software.smallest.html | 2 +- ...peller.problems.string-classification.html | 2 +- docs/propeller.problems.valiant.html | 2 +- docs/propeller.push.instructions.bool.html | 2 +- ...propeller.push.instructions.character.html | 2 +- docs/propeller.push.instructions.code.html | 2 +- docs/propeller.push.instructions.html | 2 +- ...peller.push.instructions.input-output.html | 2 +- docs/propeller.push.instructions.numeric.html | 2 +- ...opeller.push.instructions.parentheses.html | 5 +++ ...opeller.push.instructions.polymorphic.html | 2 +- docs/propeller.push.instructions.string.html | 2 +- docs/propeller.push.instructions.vector.html | 2 +- docs/propeller.push.interpreter.html | 2 +- docs/propeller.push.limits.html | 2 +- docs/propeller.push.state.html | 2 +- docs/propeller.selection.html | 4 +- docs/propeller.simplification.html | 2 +- docs/propeller.tools.calculus.html | 2 +- docs/propeller.tools.character.html | 2 +- docs/propeller.tools.distributions.html | 2 +- docs/propeller.tools.math.html | 4 +- docs/propeller.tools.metrics.html | 10 ++++- docs/propeller.utils.html | 22 ++++++++-- docs/propeller.variation.html | 27 +++++-------- src/docs_src/Additional_Instructions.md | 5 +++ 69 files changed, 249 insertions(+), 104 deletions(-) create mode 100644 docs/Downsampling_training_data.html create mode 100644 docs/propeller.downsample.html create mode 100644 docs/propeller.problems.PSB2.find-pair.html create mode 100644 docs/propeller.problems.UBall5D.html create mode 100644 docs/propeller.problems.boolean.mul3.html create mode 100644 docs/propeller.problems.boolean.mul4.html create mode 100644 docs/propeller.problems.data-creation.html create mode 100644 docs/propeller.push.instructions.parentheses.html diff --git a/docs/A_Guide_To_Propeller.html b/docs/A_Guide_To_Propeller.html index b79e2b8..fb0d61b 100644 --- a/docs/A_Guide_To_Propeller.html +++ b/docs/A_Guide_To_Propeller.html @@ -1,6 +1,6 @@ -A Guide to Propeller

A Guide to Propeller

+A Guide to Propeller

A Guide to Propeller

Propeller is an implementation of the Push programming language and the PushGP genetic programming system in Clojure.

For more information on Push and PushGP see http://pushlanguage.org.

Overview

diff --git a/docs/Adding_Genetic_Operators.html b/docs/Adding_Genetic_Operators.html index 723490c..5c79526 100644 --- a/docs/Adding_Genetic_Operators.html +++ b/docs/Adding_Genetic_Operators.html @@ -1,6 +1,6 @@ -Adding Genetic Operators

Adding Genetic Operators

+Adding Genetic Operators

Adding Genetic Operators

In addition to the already-included genetic operators, you can add your own!

Variation Genetic Operators

    diff --git a/docs/Adding_Problem.html b/docs/Adding_Problem.html index 47b490d..7a87c28 100644 --- a/docs/Adding_Problem.html +++ b/docs/Adding_Problem.html @@ -1,6 +1,6 @@ -Adding a Problem

    Adding a Problem

    +Adding a Problem

    Adding a Problem

    In general, a problem file has 3 components: train-and-test-data, instructions, error-function, and -main.

    1. To add a new problem, you need training and test data. For Problem Synthesis Benchmark Problems (PSB2), you can fetch datasets using psb2.core/fetch-examples.
    2. diff --git a/docs/Adding_Selection_Method.html b/docs/Adding_Selection_Method.html index 2af2135..83025f1 100644 --- a/docs/Adding_Selection_Method.html +++ b/docs/Adding_Selection_Method.html @@ -1,6 +1,6 @@ -Adding a Selection Method

      Adding a Selection Method

      +Adding a Selection Method

      Adding a Selection Method

      1. Define a selection method function in propeller.selection that selects an individual from the population
      2. Add the selection method in propeller.selection/select-parent under the case call:
      3. diff --git a/docs/Additional_Instructions.html b/docs/Additional_Instructions.html index 3de1ab7..ba2e1fb 100644 --- a/docs/Additional_Instructions.html +++ b/docs/Additional_Instructions.html @@ -1,6 +1,6 @@ -Additional Instructions

        Table of contents

        +Additional Instructions

        Table of contents