Examples of Parametersatz


Examples of fmg.fmg8.statistik.Parametersatz

     * Startet einen Zeitablauf mit Simulation ohne GUI.
     *
     * @param args  Die Parameter.
     */
    public static void main(final String[] args) {
        Parametersatz params = new Parametersatz(args);
        params.ergaenze();
        params.setGraphisch(false);
       
        if (params.getGraphisch().booleanValue()) {
            throw new RuntimeException("Nur Kommandozeilenmodus erlaubt.");
        }
       
        SonstMeth.log(1, params.toString(), params, "plain", null);
        SimulationsZeit simT = new SimulationsZeit(params, null, null);
       
        simT.zeitStarten();
    }
View Full Code Here

Examples of fmg.fmg8.statistik.Parametersatz

            v = new Vektor2D(-2.3, -1.7);
            a.add(v);
        }

        if (nummer == 6) {
            Parametersatz params = new Parametersatz(new String[0]);
            params.ergaenze();
            PfeilMaster zeichnen = new PfeilMaster(params);

            ArrayList<Double> dicken = new ArrayList<Double>();
            Polygon2D bez = new Polygon2D();
View Full Code Here

Examples of fmg.fmg8.statistik.Parametersatz

     * Main-Methode.
     *
     * @param args  Argumente.
     */
    public static void main(final String[] args) {
        Parametersatz params = new Parametersatz(args);
        params.ergaenze();
        PfeilMaster zeichnen = new PfeilMaster(params);
        List<Object> l = new ArrayList<Object>();
        Polygon2D bez2 = new Polygon2D();

        bez2 = Geometrie2D.bezierKurve(
                new Vektor2D(0, 0),
                new Vektor2D(50, 0),
                new Vektor2D(50, -20),
                new Vektor2D(100, -20),
                0.0001);
       
        bez2 = bez2.normalisiere();

        Polygon2D seg = zeichnen.segmentPfeilPol2D(
                bez2,
                null,
                PfeilMaster.DOPPELSPITZES_ENDE,
                PfeilMaster.EINFACHE_SPITZE_1,
                new Vektor2D(1, 1),
                new Vektor2D(1, 1));

        l.add(seg.toPol(5, Vektor2D.NULL_VEKTOR));
        l.add(0, new AusgMerkm(Color.black, Color.yellow, true, true));
        params.setStdPfad(
          "C:\\Eig\\Forschung\\Paper_Vortraege\\Paper_4_AAMAS_accept\\Poster");
       
        Geometrie2D.saveObjectsToFile(l, "luke", "png", params);
    }
View Full Code Here

Examples of fmg.fmg8.statistik.Parametersatz

    public static void main(final String[] args) {
        String seq = "";
        String[] argsNeu = new String[2];
        argsNeu[0] = "log";
        argsNeu[1] = "0";
        Parametersatz params = new Parametersatz(argsNeu);
        params.ergaenze();

        // BO
//        LinkedList<String> s = SonstMeth.liesTextArray(
//                "graphen", "sequenz2.txt", params);
//        System.out.println();
View Full Code Here

Examples of fmg.fmg8.statistik.Parametersatz

     *
     * @param args  Parameter.
     */
    @Deprecated
    public static void main(String[] args) {
        Parametersatz params = new Parametersatz(args);
        params.ergaenze();
        String seqCode
        = "001 110 100 101 000 012 099 001 000 007 000 000 002 001 000 " +
        "012 099 002 000 004 000 000 005 001 000 000 000 014 105 100 " +
        "001 000 012 099 001 000 004 000 000 010 001 000 012 099 001 " +
        "000 007 000 000 004 001 000 000 000 013 108 100 001 000 012 " +
View Full Code Here

Examples of fmg.fmg8.statistik.Parametersatz

     *              an die Klasse Parametersatz weitergegeben. Zur Formatierung
     *              der Parameter siehe diese Klasse sowie die Klasse
     *              Konstanten des Pakets statistik.
     */
    public static void main(final String[] args) {
        Parametersatz pr = new Parametersatz(args);
        pr.ergaenze();
          
        if (pr.getGraphisch().booleanValue()) {
            PfeilController steuer = new PfeilController(pr);
//            SonstMeth.log(SonstMeth.LOG_DEBUG, pr.toString(), pr, "plain");
            steuer.setVisible(true);
        }
    }
View Full Code Here

Examples of fmg.fmg8.statistik.Parametersatz

     *
     * @param args  Nichts.
     */
    public static void main(final String[] args) {
        String[] p = {"log", "-1"};
        Parametersatz pars = new Parametersatz(p);
        ScriptInterpreter interp
            = new ScriptInterpreter(pars, ScriptInterpreter.MODUS_VERHALTEN);
        EndlicherAutomat a = new EndlicherAutomat(null, interp);
        String str = "";
       
View Full Code Here

Examples of fmg.fmg8.statistik.Parametersatz

     *              an die Klasse Parametersatz weitergegeben. Zur Formatierung
     *              der Parameter siehe diese Klasse sowie die Klasse
     *              Konstanten der Pakets statistik.
     */
    public static void main(final String[] args) {
        Parametersatz pr = new Parametersatz(args);
        pr.ergaenze();

        // Info-Datei schreiben:
        SonstMeth.schreibeInfoDatei(pr);

        if (pr.getGraphisch().booleanValue()) {
            SteuerFenster steuer = new SteuerFenster(pr);
            SonstMeth.log(
                    SonstMeth.LOG_DEBUG,
                    "\n" + pr.toString(),
                    pr,
                    "plain",
                    null);
            steuer.ktList.removeAll();
            new Taktgeber(pr, steuer);
View Full Code Here

Examples of fmg.fmg8.statistik.Parametersatz

                || conds == null
                || endAuts.length != conds.length
                || endAuts.length == 0) {
            SonstMeth.log(SonstMeth.LOG_ERROR,
                          "Gesamtautomat konnte nicht erzeugt werden.",
                          new Parametersatz(args));
        }
       
        for (int i = 0; i < eas.length; i++) {
            eas[i] = new EndlicherAutomat();
            eas[i].erzeugeAusSequenz(
View Full Code Here

Examples of fmg.fmg8.statistik.Parametersatz

     *            die Klasse Parametersatz weitergegeben. Zur Formatierung der
     *            Parameter siehe diese Klasse sowie die Klasse Konstanten des
     *            Pakets statistik.
     */
    public static void main(final String[] args) {
        Parametersatz pr = new Parametersatz(args);
        pr.ergaenze();
        pr.setGraphisch(true);
       
        if (pr.getGraphisch().booleanValue()) {
            PfeilController steuer = new PfeilController(pr);
            // SonstMeth.log(SonstMeth.LOG_DEBUG, pr.toString(), pr, "plain");
            steuer.setVisible(true);
        }
    }
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.