Skip to content

Commit

Permalink
Update component description
Browse files Browse the repository at this point in the history
  • Loading branch information
hrntsm committed Apr 9, 2022
1 parent 2bd6481 commit 8a41925
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tunny/Component/TunnyComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public TunnyComponent()

protected override void RegisterInputParams(GH_InputParamManager pManager)
{
pManager.AddNumberParameter("Variables", "Variables", "The value of the optimization problem's objective function depends on variables, the unknowns. Connect an arbitrary number of number sliders and gene pools as the variables of the optimization problem.\n\nThe number sliders' bounds are the bounds of the variables. After optimization, the number sliders (variables) are set to the optimal position.\n\nIn Galapagos, the variables are called genes.", GH_ParamAccess.list);
pManager.AddNumberParameter("Objective", "Objective", "The objective value depends on the values of the variables. The algorithm searches for the objective's optimal value by changing the variables' values.\n\nThe objective value should be a single Number Parameter that yields a single value for any configuration of the variables.\n\nIn Galapagos, the objective value is called fitness.", GH_ParamAccess.item);
pManager.AddNumberParameter("Variables", "Variables", "Connect variable number slider here.", GH_ParamAccess.list);
pManager.AddNumberParameter("Objective", "Objective", "Connect objective number component here", GH_ParamAccess.item);
}

protected override void RegisterOutputParams(GH_OutputParamManager pManager)
Expand Down

0 comments on commit 8a41925

Please sign in to comment.