Examples of Aufnahme


Examples of fmg.fmg8.statistik.Aufnahme

       
        this.pars = params;
        this.observer = obs;
        this.visObserver = visObs;

        this.aufnahme = new Aufnahme(this.pars);
        this.schnappZyklen = this.pars.getSchnInt().longValue();
        this.rand = new Random(this.pars.getSeed().longValue());
        this.rekombArt = new RekTrivial(
                this.pars.getRekAnzEltern(),
                this.pars.getRekAnzKinder(),
View Full Code Here

Examples of fmg.fmg8.statistik.Aufnahme

                      final int[]         ids) {
        this.pars = params;
        this.observer = obs;
        this.visObserver = visObs;

        this.aufnahme = new Aufnahme(this.pars);
        this.schnappZyklen = this.pars.getSchnInt().longValue();
        this.rand = new Random(this.pars.getSeed().longValue());
        this.rekombArt = new RekTrivial(
                this.pars.getRekAnzEltern(),
                this.pars.getRekAnzKinder(),
View Full Code Here

Examples of fmg.fmg8.statistik.Aufnahme

       
        this.pars = params;
        this.observer = obs;
        this.visObserver = visObs;

        this.aufnahme = new Aufnahme(this.pars);
        this.schnappZyklen = this.pars.getSchnInt().longValue();
        this.schnappGIFZyklen = this.pars.getSchnappGIF();
        this.rand = new Random(this.pars.getSeed().longValue());
        this.rekombArt = OpsFactory.getKonstRek(
                this.pars.getRekombVerfahren(),
View Full Code Here

Examples of fmg.fmg8.statistik.Aufnahme

                      final Dynamik       wandDyn) {
        this.pars = params;
        this.observer = obs;
        this.visObserver = visObs;

        this.aufnahme = new Aufnahme(this.pars);
        this.schnappZyklen = this.pars.getSchnInt().longValue();
        this.schnappGIFZyklen = this.pars.getSchnappGIF();
        this.rand = new Random(this.pars.getSeed().longValue());
        this.rekombArt = OpsFactory.getKonstRek(
                this.pars.getRekombVerfahren(),
View Full Code Here

Examples of fmg.fmg8.statistik.Aufnahme

    public static void extrahiereAlleFit(final String verz,
                                         final Parametersatz params) {
        File pfad = new File(verz);
        String endung = "gz";
        String[] gespGr = pfad.list(new DateiFilter(endung));
        Aufnahme aufn;
        String sGes;
        String zusGes;
       
        if (gespGr == null) {
            log(4, "Ungueltiges Verzeichnis: " + verz, params);
            throw new RuntimeException("Ung�ltiges Verzeichnis.\n" + verz);
        }

        for (int i = 0; i < gespGr.length; i++) {
            log(2,
                "Extrahiere Fitness ("
                    + verz
                    + File.separator
                    + gespGr[i]
                    + ").",
                params);
            try {
                aufn = new Aufnahme(verz + File.separator
                        + gespGr[i].substring(0, gespGr[i].length() - 3));
                sGes = extrahiereFit(aufn.getPops());
                zusGes = SonstMeth.extrZusatz(aufn);
               
                // Speichere Fitnesswerte.
                SonstMeth.speichereTextDatei(
                        verz,
View Full Code Here

Examples of fmg.fmg8.statistik.Aufnahme

    public static void extrahiereAlleFit(final String verz,
                                         final Parametersatz params) {
        File pfad = new File(verz);
        String endung = "gz";
        String[] gespGr = pfad.list(new DateiFilter(endung));
        Aufnahme aufn;
        String sGes;
       
        if (gespGr == null) {
            log(4, "Ungueltiges Verzeichnis: " + verz, params);
            throw new RuntimeException("Ung�ltiges Verzeichnis.\n" + verz);
        }

        for (int i = 0; i < gespGr.length; i++) {
            log(2,
                "Extrahiere Fitness ("
                    + verz
                    + File.separator
                    + gespGr[i]
                    + ").",
                params);
            try {
                aufn = new Aufnahme(verz + File.separator
                        + gespGr[i].substring(0, gespGr[i].length() - 3));
                sGes = extrahiereFit(aufn.getPops());
               
                speichereTextDatei(verz,
                                   "FIT-" + gespGr[i] + ".txt",
                                   sGes,
                                   params);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.