cca
changeset 35:3d91e8bc5f70
Default Automata dimensions
author | darkhan |
---|---|
date | Sun, 05 Dec 2010 14:01:47 +0300 |
parents | 992d0179053e |
children | 282ebe06d5ac |
files | Automata.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/Automata.py Sun Dec 05 13:12:50 2010 +0300 1.2 +++ b/Automata.py Sun Dec 05 14:01:47 2010 +0300 1.3 @@ -5,7 +5,7 @@ 1.4 #states[] 1.5 #symbols = {} - symbol: number_in_states 1.6 1.7 - def __init__(self, width, height, states=None): 1.8 + def __init__(self, width=50, height=50, states=None): 1.9 self.width = width 1.10 self.height = height 1.11 if states == None: