All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download org.cicirello JAR files with all dependencies

Search JAR files by class name

permutation-crossover-landscape-analysis from group org.cicirello (version 1.0.0)

This package contains Java code to reproduce the experiments of the following conference paper: Vincent A. Cicirello. 2023. A Survey and Analysis of Evolutionary Operators for Permutations. Proceedings of the 15th International Joint Conference on Computational Intelligence, pages 288-299. https://doi.org/10.5220/0012204900003595.

Group: org.cicirello Artifact: permutation-crossover-landscape-analysis
Show documentation Show source 
 

0 downloads
Artifact permutation-crossover-landscape-analysis
Group org.cicirello
Version 1.0.0
Last update 29. November 2023
Organization Cicirello.org
URL https://github.com/cicirello/permutation-crossover-landscape-analysis
License GPL-3.0-or-later
Dependencies amount 1
Dependencies chips-n-salsa,
There are maybe transitive dependencies!

btpe-iterations from group org.cicirello (version 1.0.0)

This package contains Java code to reproduce the experiments of the following article: Vincent A. Cicirello. 2023. An Analysis of an Open Source Binomial Random Variate Generation Algorithm, Engineering Proceedings, 56(1), Article 86, October 2023. doi:10.3390/ASEC2023-15349.

Group: org.cicirello Artifact: btpe-iterations
Show documentation Show source 
 

0 downloads
Artifact btpe-iterations
Group org.cicirello
Version 1.0.0
Last update 29. November 2023
Organization Cicirello.Org
URL https://github.com/cicirello/btpe-iterations
License GPL-3.0-or-later
Dependencies amount 1
Dependencies rho-mu,
There are maybe transitive dependencies!

interactive-bin-packing from group org.cicirello (version 3.1.5)

The Interactive Bin Packing Application provides a self-guided tutorial on combinatorial optimization, the bin packing problem, and constructive heuristics for bin packing. It also enables the user to interact with bin packing instances to explore their own problem solving strategies, or to test their knowledge of the various constructive heuristics covered by the tutorial. The application is not a solver for bin packing. The Interactive Bin Packing Application is a tool for learning about the bin packing problem, as well as for learning about heuristic techniques for solving instances of the problem.

Group: org.cicirello Artifact: interactive-bin-packing
Show all versions Show documentation Show source 
 

0 downloads
Artifact interactive-bin-packing
Group org.cicirello
Version 3.1.5
Last update 07. August 2023
Organization Cicirello.Org
URL https://github.com/cicirello/InteractiveBinPacking
License GPL-3.0-or-later
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

chips-n-salsa-examples from group org.cicirello (version 6.4.0)

This package contains several example programs of the usage of the Chips-n-Salsa library. Chips-n-Salsa is a Java library of customizable, hybridizable, iterative, parallel, stochastic, and self-adaptive local search algorithms. Chips-n-Salsa's source code is maintained on GitHub, and the prebuilt jars of the library can be imported from Maven Central using maven or other build tools. The purpose of the package chips-n-salsa-examples is to demonstrate usage of the major functionality of the Chips-n-Salsa library. You can find out more about the Chips-n-Salsa library itself from its website: https://chips-n-salsa.cicirello.org/.

Group: org.cicirello Artifact: chips-n-salsa-examples
Show all versions Show documentation Show source 
 

0 downloads
Artifact chips-n-salsa-examples
Group org.cicirello
Version 6.4.0
Last update 02. August 2023
Organization Cicirello.Org
URL https://github.com/cicirello/chips-n-salsa-examples
License GPL-3.0-or-later
Dependencies amount 1
Dependencies chips-n-salsa,
There are maybe transitive dependencies!

chips-n-salsa from group org.cicirello (version 6.4.0)

Chips-n-Salsa is a Java library of customizable, hybridizable, iterative, parallel, stochastic, and self-adaptive local search algorithms. The library includes implementations of several stochastic local search algorithms, including simulated annealing, hill climbers, as well as constructive search algorithms such as stochastic sampling. Chips-n-Salsa now also includes genetic algorithms as well as evolutionary algorithms more generally. The library very extensively supports simulated annealing. It includes several classes for representing solutions to a variety of optimization problems. For example, the library includes a BitVector class that implements vectors of bits, as well as classes for representing solutions to problems where we are searching for an optimal vector of integers or reals. For each of the built-in representations, the library provides the most common mutation operators for generating random neighbors of candidate solutions, as well as common crossover operators for use with evolutionary algorithms. Additionally, the library provides extensive support for permutation optimization problems, including implementations of many different mutation operators for permutations, and utilizing the efficiently implemented Permutation class of the JavaPermutationTools (JPT) library. Chips-n-Salsa is customizable, making extensive use of Java's generic types, enabling using the library to optimize other types of representations beyond what is provided in the library. It is hybridizable, providing support for integrating multiple forms of local search (e.g., using a hill climber on a solution generated by simulated annealing), creating hybrid mutation operators (e.g., local search using multiple mutation operators), as well as support for running more than one type of search for the same problem concurrently using multiple threads as a form of algorithm portfolio. Chips-n-Salsa is iterative, with support for multistart metaheuristics, including implementations of several restart schedules for varying the run lengths across the restarts. It also supports parallel execution of multiple instances of the same, or different, stochastic local search algorithms for an instance of a problem to accelerate the search process. The library supports self-adaptive search in a variety of ways, such as including implementations of adaptive annealing schedules for simulated annealing, such as the Modified Lam schedule, implementations of the simpler annealing schedules but which self-tune the initial temperature and other parameters, and restart schedules that adapt to run length.

Group: org.cicirello Artifact: chips-n-salsa
Show all versions Show documentation Show source 
 

0 downloads
Artifact chips-n-salsa
Group org.cicirello
Version 6.4.0
Last update 28. July 2023
Organization Cicirello.Org
URL https://chips-n-salsa.cicirello.org/
License GPL-3.0-or-later
Dependencies amount 3
Dependencies jpt, rho-mu, core,
There are maybe transitive dependencies!

rho-mu from group org.cicirello (version 3.1.1)

The rho mu library is a library of Randomization enHancements and Other Math Utilities. It includes implementations of various algorithms for randomly sampling indexes into arrays and other sequential structures, randomly sampling pairs and triples of unique indexes, randomly sampling k indexes, etc. It also includes efficient implementations of random number generation from distributions other than uniform, such as Gaussian, Cauchy, etc. Additionally, it includes implementations of other math functions that are either needed by the randomization utilities, or needed by some of our other projects.

Group: org.cicirello Artifact: rho-mu
Show all versions Show documentation Show source 
 

0 downloads
Artifact rho-mu
Group org.cicirello
Version 3.1.1
Last update 11. June 2023
Organization Cicirello.Org
URL https://rho-mu.cicirello.org/
License GPL-3.0-or-later
Dependencies amount 1
Dependencies core,
There are maybe transitive dependencies!

jpt-examples from group org.cicirello (version 5.1.0)

This package contains several example programs of the usage of the JavaPermutationTools (JPT) library. JPT is a Java library that enables representing and generating permutations and sequences, as well as performing computation on permutations and sequences. It includes implementations of a variety of permutation distance metrics as well as distance metrics on sequences (i.e., Strings, arrays, and other ordered data types). In addition to programs demonstrating the usage of the JPT library, the jpt-examples package also contains programs for replicating the experiments from a few published papers that utilized the library or implementations on which the library is based. JPT's source code is maintained on GitHub, and the prebuilt jars of the library can be imported from Maven Central using maven or other build tools. The purpose of the package jpt-examples is to demonstrate usage of the major functionality of the JPT library. You can find out more about the JPT library itself from its website: https://jpt.cicirello.org/.

Group: org.cicirello Artifact: jpt-examples
Show all versions Show documentation Show source 
 

0 downloads
Artifact jpt-examples
Group org.cicirello
Version 5.1.0
Last update 31. May 2023
Organization Cicirello.Org
URL https://github.com/cicirello/jpt-examples
License GPL-3.0-or-later
Dependencies amount 1
Dependencies jpt,
There are maybe transitive dependencies!

jpt from group org.cicirello (version 5.1.0)

JavaPermutationTools (JPT) is a library for computation on permutations and sequences. JPT provides Java classes that enable representing and generating permutations and sequences, as well as performing computation on permutations and sequences. It includes implementations of a variety of permutation distance metrics as well as distance metrics on sequences (i.e., Strings, arrays, and other ordered data types).

Group: org.cicirello Artifact: jpt
Show all versions Show documentation Show source 
 

0 downloads
Artifact jpt
Group org.cicirello
Version 5.1.0
Last update 30. May 2023
Organization Cicirello.Org
URL https://jpt.cicirello.org/
License GPL-3.0-or-later
Dependencies amount 2
Dependencies rho-mu, core,
There are maybe transitive dependencies!

core from group org.cicirello (version 2.5.0)

This library provides some of the core utilities and data structures used in several of our other libraries and projects.

Group: org.cicirello Artifact: core
Show all versions Show documentation Show source 
 

0 downloads
Artifact core
Group org.cicirello
Version 2.5.0
Last update 21. April 2023
Organization Cicirello.Org
URL https://core.cicirello.org/
License GPL-3.0-or-later
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

ziggurat from group org.cicirello (version 1.0.5)

Java implementation of the Ziggurat algorithm for generating Gaussian distributed pseudorandom numbers. The Ziggurat algorithm is significantly faster than the more commonly encountered Polar method, and has some other desirable statistical properties. The ZigguratGaussian class is a Java port of the GNU Scientific Library's C implementation (Voss, 2005) of the Ziggurat method. In porting to Java, we have made several optimizations, the details of which can be found in the source code comments, which highlights any differences between this Java implementation and the C implementation on which it is based. This package also includes an implementation of the Polar Method, included to enable comparing speed advantage of the Ziggurat algorithm.

Group: org.cicirello Artifact: ziggurat
Show all versions Show documentation Show source 
 

0 downloads
Artifact ziggurat
Group org.cicirello
Version 1.0.5
Last update 01. December 2022
Organization Cicirello.Org
URL https://github.com/cicirello/ZigguratGaussian
License GPL-3.0-or-later
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!



Page 1 from 2 (items total 14)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy