decorators-squad / eva

A simple Java OOP evolutionary algorithm framework.
BSD 3-Clause "New" or "Revised" License
19 stars 2 forks source link

Abstract the population replacement mechanism #24

Closed amihaiemil closed 7 years ago

amihaiemil commented 8 years ago

Right now, each new generation of solutions completely replaces the previous one. It would be nice to make this configurable .

charlesmike commented 7 years ago

@charlesmike delete eva index

@amihaiemil thank you for the command, the indexing process started just now. I will let you know of the outcome shortly. In the meantime, you can check the logs here.

charlesmike commented 7 years ago

@charlesmike delete eva index

@amihaiemil Some steps failed when precessing your command. See logs for details.

amihaiemil commented 7 years ago

@rultor config

rultor commented 7 years ago

@rultor config

@amihaiemil This is how I understand the .rultor.yml file in the root directory of your base branch:

<?xml version="1.0" encoding="UTF-8"?>
<p>
   <entry key="architect">
      <item>amihaiemil</item>
   </entry>
   <entry key="docker">
      <entry key="as_root">true</entry>
   </entry>
   <entry key="env">
      <entry key="MAVEN_OPTS">-XX:MaxPermSize=256m -Xmx1g</entry>
   </entry>
   <entry key="merge">
      <entry key="script">mvn clean install</entry>
   </entry>
   <entry key="deploy">
      <entry key="script">
         <item>echo "Any deployment script here..."</item>
      </entry>
   </entry>
   <entry key="decrypt">
      <entry key="settings.xml">repo/rcfg/settings.xml.asc</entry>
      <entry key="pubring.gpg">repo/rcfg/pubring.gpg.asc</entry>
      <entry key="secring.gpg">repo/rcfg/secring.gpg.asc</entry>
   </entry>
   <entry key="release">
      <entry key="script">chmod +x ./rrv.sh
./rrv.sh</entry>
   </entry>
</p>

This page explains how to configure it.

amihaiemil commented 7 years ago

done