Äîêóìåíò âçÿò èç êýøà ïîèñêîâîé ìàøèíû. Àäðåñ îðèãèíàëüíîãî äîêóìåíòà : http://kodomo.cmm.msu.su/trac/cca/changeset/105
Äàòà èçìåíåíèÿ: Unknown
Äàòà èíäåêñèðîâàíèÿ: Sun Apr 10 01:02:14 2016
Êîäèðîâêà: IBM-866
Changeset 105:ef8839e99f34 òÀÓ Cyclyc Cell Automata

Changeset 105:ef8839e99f34


Ignore:
Timestamp:
12/18/10 13:58:03 (5 years ago)
Author:
darkhan
Branch:
default
Message:

Adding GPLv2

Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • Help.html

    • Property exe set to *
    r103 r105 ˆà
    ˆà1<!--ˆà
    ˆà2Copyright 2010 Aydarkhanov Ruslan, Kurochkin Ilya, Rusinov Ivanˆà
    ˆà3ˆà
    ˆà4This file is part of Foobar.ˆà
    ˆà5ˆà
    ˆà6Foobar 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 2 of the License, or (at your option) any later version.ˆà
    ˆà7ˆà
    ˆà8Foobar 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.ˆà
    ˆà9ˆà
    ˆà10You should have received a copy of the GNU General Public License along with Foobar. If not, see http://www.gnu.org/licenses/.ˆà
    ˆà11ˆà
    ˆà12-->ˆà
    113<html>ˆà
    214        <head>ˆà
  • automata.py

    • Property exe set to *
    r89 r105 ˆà
    ˆà1"""Copyright 2010 Aydarkhanov Ruslan, Kurochkin Ilya, Rusinov Ivanˆà
    ˆà2ˆà
    ˆà3This file is part of Foobar.ˆà
    ˆà4ˆà
    ˆà5Foobar is free software: you can redistribute it and/or modify it underˆà
    ˆà6the terms of the GNU General Public License as publishedˆà
    ˆà7by the Free Software Foundation, either version 2 of the License,ˆà
    ˆà8or (at your option) any later version.ˆà
    ˆà9ˆà
    ˆà10Foobar is distributed in the hope that it will be useful,ˆà
    ˆà11but WITHOUT ANY WARRANTY; without even the implied warrantyˆà
    ˆà12of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.ˆà
    ˆà13See the GNU General Public License for more details.ˆà
    ˆà14ˆà
    ˆà15You should have received a copy of the GNU General Public Licenseˆà
    ˆà16along with Foobar. If not, see http://www.gnu.org/licenses/.ˆà
    ˆà17"""ˆà
    ˆà18ˆà
    119from state import *ˆà
    220ˆà
  • interface.py

    • Property exe set to *
    r103 r105 ˆà
    ˆà1"""Copyright 2010 Aydarkhanov Ruslan, Kurochkin Ilya, Rusinov Ivanˆà
    ˆà2ˆà
    ˆà3This file is part of Foobar.ˆà
    ˆà4ˆà
    ˆà5Foobar is free software: you can redistribute it and/or modify it underˆà
    ˆà6the terms of the GNU General Public License as publishedˆà
    ˆà7by the Free Software Foundation, either version 2 of the License,ˆà
    ˆà8or (at your option) any later version.ˆà
    ˆà9ˆà
    ˆà10Foobar is distributed in the hope that it will be useful,ˆà
    ˆà11but WITHOUT ANY WARRANTY; without even the implied warrantyˆà
    ˆà12of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.ˆà
    ˆà13See the GNU General Public License for more details.ˆà
    ˆà14ˆà
    ˆà15You should have received a copy of the GNU General Public Licenseˆà
    ˆà16along with Foobar. If not, see http://www.gnu.org/licenses/.ˆà
    ˆà17"""ˆà
    ˆà18ˆà
    119import mathˆà
    220import pickleˆà
    òÀæ òÀæ ˆà
    5775                file = tkFileDialog.asksaveasfile(defaultextension=".caf",ˆà
    5876                                                                                        title="Save automata as",ˆà
    59ˆà                                                                                        filetypes=[('CCA File', '*.caf')])ˆà
    ˆà77                                                                                        filetypes=[('CCA File', '*.caf')],ˆà
    ˆà78                                                                                        mode="wb")ˆà
    6079                if file is not None:ˆà
    6180                        pickle.dump([automata.field, automata.states], file)ˆà
    òÀæ òÀæ ˆà
    6382        def open_file(self, event=None):ˆà
    6483                file = tkFileDialog.askopenfile(title="Open file",ˆà
    65ˆà                                                                                filetypes=[('CCA File', '*.caf')])ˆà
    ˆà84                                                                                filetypes=[('CCA File', '*.caf')],ˆà
    ˆà85                                                                                mode="rb")ˆà
    6686                if file is not None:ˆà
    6787                        from_file = pickle.load(file)ˆà
  • state.py

    • Property exe set to *
    r90 r105 ˆà
    ˆà1"""Copyright 2010 Aydarkhanov Ruslan, Kurochkin Ilya, Rusinov Ivanˆà
    ˆà2ˆà
    ˆà3This file is part of Foobar.ˆà
    ˆà4ˆà
    ˆà5Foobar is free software: you can redistribute it and/or modify it underˆà
    ˆà6the terms of the GNU General Public License as publishedˆà
    ˆà7by the Free Software Foundation, either version 2 of the License,ˆà
    ˆà8or (at your option) any later version.ˆà
    ˆà9ˆà
    ˆà10Foobar is distributed in the hope that it will be useful,ˆà
    ˆà11but WITHOUT ANY WARRANTY; without even the implied warrantyˆà
    ˆà12of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.ˆà
    ˆà13See the GNU General Public License for more details.ˆà
    ˆà14ˆà
    ˆà15You should have received a copy of the GNU General Public Licenseˆà
    ˆà16along with Foobar. If not, see http://www.gnu.org/licenses/.ˆà
    ˆà17"""ˆà
    ˆà18ˆà
    ˆà19ˆà
    120class State(object):ˆà
    221ˆà
Note: See TracChangeset for help on using the changeset viewer.