Skip to content
Permalink
Browse files
first commit
  • Loading branch information
rgerm committed Apr 5, 2011
0 parents commit 72d4310
Show file tree
Hide file tree
Showing 208 changed files with 20,051 additions and 0 deletions.
@@ -0,0 +1,3 @@
/.settings
/.classpath
/target
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>movsim</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
674 COPYING

Large diffs are not rendered by default.

@@ -0,0 +1,52 @@
=========================================================================
MovSim

MovSim: multi-model open-source vehicular-traffic simulator


http://www.movsim.org

=========================================================================

Description:


-------------------------------------------------------------------------

Usage:


-------------------------------------------------------------------------

For commercial use, please contact the copyright holders at


-------------------------------------------------------------------------
/**
* Copyright (C) 2010, 2011 by Arne Kesting <movsim@akesting.de>,
* Martin Treiber <treibi@mtreiber.de>,
* Ralph Germ <germ@ralphgerm.de>,
* Martin Budden <mjbudden@gmail.com>
*
* ----------------------------------------------------------------------
*
* This file is part of
*
* MovSim - the multi-model open-source vehicular-traffic simulator
*
* MovSim is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* MovSim is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MovSim. If not, see <http://www.gnu.org/licenses/> or
* <http://www.movsim.org>.
*
* ----------------------------------------------------------------------
*/
101 pom.xml
@@ -0,0 +1,101 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.movsim</groupId>
<artifactId>movsim</artifactId>
<version>0.1</version>
<packaging>jar</packaging>

<name>movsim</name>
<url>http://www.movsim.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>
</dependencies>

<build>
<plugins>

<!-- build jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<!-- nothing here -->
</plugin>

<!-- build executable jar with all dependencies -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<!-- <version>2.2-beta-4</version> -->
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>org.movsim.App</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>

<!-- Java 1.6 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>

</plugins>
</build>

</project>
@@ -0,0 +1,5 @@
/startStop_IDM.000020.car
/startStop_IDM.000010.car
/startStop_IDM.000015.car
/startStop_IDM.000001.car
/startStop_IDM.000005.car
@@ -0,0 +1,23 @@
# Set root logger level to DEBUG and its only appender to A1.
log4j.rootLogger=DEBUG, A1

# A1 is set to be a ConsoleAppender.
log4j.appender.A1=org.apache.log4j.ConsoleAppender

# A1 Layout Pattern:
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
# TTCC: Time Thread Category Component
# The first field is the number of milliseconds elapsed since the start of the program.
# The second field is the thread making the log request.
# The third field is the level of the log statement.
# The fourth field is the name of the logger associated with the log request.
# The text after the '-' is the message of the statement.
#log4j.appender.A1.layout.ConversionPattern=%r [%t] %-5p %c - %m%n
log4j.appender.A1.layout.ConversionPattern=%r [%t] %-5p (%F:%M:%L) - %m%n

# Print only messages of level INFO or above in the package
log4j.logger.de.tudresden.microsim.input.impl=INFO
# Print only messages of level DEBUG or above in the package
log4j.logger.de.tudresden.microsim.simulator.RoadSection=DEBUG
log4j.logger.de.tudresden.microsim.simulator=DEBUG
log4j.logger.de.tudresden.microsim.ui=DEBUG

0 comments on commit 72d4310

Please sign in to comment.