-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c07e2c9
commit 5340cfb
Showing
3 changed files
with
21 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
"""Numpy implementation of the Social Force model.""" | ||
|
||
__version__ = "1.1.2" | ||
__version__ = "2.0.0" | ||
|
||
from .logging import * | ||
from .logging import logger | ||
from .config import \ | ||
SimulatorConfig, DesiredForceConfig, GroupCoherenceForceConfig, \ | ||
GroupGazeForceConfig, GroupReplusiveForceConfig, ObstacleForceConfig, \ | ||
PedSpawnConfig, SceneConfig, SocialForceConfig | ||
from .simulator import Simulator, Simulator_v2 | ||
from .forces import * | ||
from .forces import \ | ||
Force, DebuggableForce, DesiredForce, GroupCoherenceForceAlt, \ | ||
GroupGazeForceAlt, GroupRepulsiveForce, ObstacleForce, SocialForce | ||
from .sim_view import SimulationView, VisualizableSimState | ||
from .map_config import \ | ||
Circle, Line2D, Rect, Zone, Vec2D, \ | ||
GlobalRoute, Obstacle, MapDefinition |