-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimulate.py
More file actions
executable file
·29 lines (24 loc) · 860 Bytes
/
simulate.py
File metadata and controls
executable file
·29 lines (24 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
# simulate
# A command line script that acts as the entry point for simulation.
#
# Author: Benjamin Bengfort <bengfort@cs.umd.edu>
# Created: Thu Nov 05 15:18:14 2015 -0500
#
# Copyright (C) 2015 University of Maryland
# For license information, see LICENSE.txt
#
# ID: simulate.py [] benjamin@bengfort.com $
"""
A command line script that acts as the entry point for simulation.
"""
##########################################################################
## Imports
##########################################################################
from gvas.console import GVASUtility
##########################################################################
## Main method
##########################################################################
if __name__ == '__main__':
utility = GVASUtility.load()
utility.execute()