Package fmg.fmg8.statistik

Examples of fmg.fmg8.statistik.Aufnahme


                    Color.white,
                    true,
                    true);

            if (this.pfeilPol.size() > 1 && this.zeichneGrundPfeil) {
                SegSpez segNeu = new SegSpez(
                        ausg,
                        0,
                        this.pfeilPol.size() - 1,
                        PfeilMaster.DOPPELSPITZES_ENDE,
                        PfeilMaster.EINFACHE_SPITZE_1,
View Full Code Here


     * Verzeichnis.
     */
    private void ladeGraphen() {
        File verz = new File(this.pars.getStdPfad());
        String endung = fmg.fmg8.graphVis.Konstanten.GRAPH_ENDUNG;
        String[] gespGr = verz.list(new DateiFilter(endung));
        String grNam;
        VisMantel visRob = null;
        Vis obs = null;
        boolean sel = false;
       
View Full Code Here

        this.removeAll();
       
        this.addWindowListener(new WindHideAdapt());
       
        this.zwischenablage = new Zwischenablage();

        this.zeichenArt = new PfeilMaster(this.pars);
        this.gewKnot = null;

        this.setLayout(new BorderLayout());
View Full Code Here

                    Konstanten.OBEN,
                    this.getWidth() - 50,
                    this.getHeight() - 50);
        }

        this.zwischenablage = new Zwischenablage();

        this.zeichenArt = new PfeilMaster(this.pars);
        this.selKnot = new Knoten[autAnz];
        this.gewKnot = null;
View Full Code Here

       
        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

                      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

       
        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

                      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

    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

    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

Related Classes of fmg.fmg8.statistik.Aufnahme

Copyright © 2018 www.massapicom. 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.