GiveAGap 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package GiveAGap --version 1.0.0
NuGet\Install-Package GiveAGap -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GiveAGap" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GiveAGap --version 1.0.0
#r "nuget: GiveAGap, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GiveAGap as a Cake Addin
#addin nuget:?package=GiveAGap&version=1.0.0

// Install GiveAGap as a Cake Tool
#tool nuget:?package=GiveAGap&version=1.0.0

After installation you need to write at least this line of code below:

Code block

var mutatioProb = 0.1f; var crossOverProb = 0.8f; var dimVincoli = 1000; var dimVars = 15; var trPerc = 0.5; var vdPerc = 0.25; var myTest = new AnotherTest(dimVincoli, dimVars, trPerc, vdPerc, 1, 1); GeneticAlgorithmSETUP setup = new GeneticAlgorithmSETUP(myTest, dimVincoli, dimVars, trPerc, vdPerc, 1,crossOverProb, mutatioProb); setup.minFit = 0.45; var xTR = setup.xTR; var yTR = setup.yTR; var xVD = setup.xVD; var yVD = setup.yVD; var xTS = setup.xTS; var yTS = setup.yTS; var forcedINOUT = setup.forcedINOUT; var result = setup.Start(); Console.WriteLine("SELECTED: " + result.Item1); Console.WriteLine("In " + result.Item2 + " generations"); Console.WriteLine("In " + result.Item3 + " seconds"); Console.WriteLine("Fitness on TS " + result.Item4); Console.WriteLine("Fitness on TR VD " + result.Item5); Console.WriteLine("*****************"); ## Explaination Basically you need to choose mutation and crossover probability, then setup the algorithm giving him the size of the input Matrix, and then calling setup.Start() the algorithm starts and when execution finishes you get a tuple with all element you need for the analysis

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 1,545 11/11/2017
1.0.2 1,563 11/5/2017
1.0.1 1,470 11/5/2017
1.0.0 1,573 11/5/2017

To add frequency Analisys