基本信息
源码名称:takagiabm模拟算法,带GUI
源码大小:0.24M
文件格式:.zip
开发语言:Python
更新时间:2021-08-26
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 1 元 
   源码介绍

兰顿蚂蚁、羊吃草等自动机模拟

TakagiABM-master

├── API.md
├── GameOfLife_DiscreteGrid.py
├── LICENSE
├── MANIFEST.in
├── demos
│   ├── ComponentsFailure元器件失效
│   │   ├── ComponentFaiure_StateMachineMethod.py
│   │   ├── ComponentsFailureBasic.py
│   │   └── 读我-元器件失效.md
│   ├── ForestFire
│   │   └── ForestFire.py
│   ├── GameOfLife生命游戏
│   │   ├── GameOfLife.py
│   │   ├── GameOfLife_DiscreteGrid.py
│   │   └── 读我-生命游戏.md
│   ├── GetHelp.py
│   ├── LangtonAnt 兰顿蚂蚁
│   │   ├── LangtonAnt.py
│   │   ├── ThreeLangtonAnts.py
│   │   └── 读我-兰顿蚂蚁.md
│   └── SheepGrassAndWolf羊吃草与狼吃羊
│       ├── SheepEatGrass.py
│       ├── SheepEatGrassCompetitively.py
│       ├── SheepEatGrassWolfEatSheep.py
│       └── 读我-羊吃草.md
├── readme.md
├── setup.py
├── setup_cython.py
├── src
│   ├── hat.jpg
│   ├── takagi.jpg
│   ├── 兰顿蚂蚁.png
│   ├── 生命游戏.png
│   └── 兰顿蚂蚁教程
├── takagi.nov
├── takagiabm
│   ├── __init__.py
│   ├── activation.py
│   ├── agents
│   │   ├── __init__.py
│   │   ├── agent.pyx
│   │   ├── baseagent.py
│   │   ├── gridagents
│   │   │   ├── __init__.py
│   │   │   ├── discretegrid
│   │   │   │   ├── __init__.py
│   │   │   │   ├── discretegridagent.py
│   │   │   │   └── discretegridcell.py
│   │   │   └── freegrid
│   │   │       ├── __init__.py
│   │   │       ├── freegridagent.py
│   │   │       └── freegridcell.py
│   │   └── vehicle_station
│   │       ├── __init__.py
│   │       ├── stations.py
│   │       └── vehicles.py
│   ├── containers
│   │   ├── __init__.py
│   │   ├── grid.pyx
│   │   ├── grids
│   │   │   ├── __init__.py
│   │   │   ├── basegrid.py
│   │   │   ├── discretegrid.py
│   │   │   └── freegrid.py
│   │   └── route.py
│   ├── control.py
│   ├── datacounter.py
│   ├── help.py
│   ├── models
│   │   ├── __init__.py
│   │   ├── discretegridmodel.py
│   │   ├── model.py
│   │   ├── model.pyx
│   │   └── vehicle_station
│   │       ├── __init__.py
│   │       └── vehicleline.py
│   ├── plottest.py
│   ├── refresh
│   │   └── __init__.py
│   ├── remoteplot2.py
│   ├── toolbox
│   │   ├── __init__.py
│   │   ├── kinematics.py
│   │   ├── kinematics.pyx
│   │   ├── looks.py
│   │   ├── multiprocessor.py
│   │   ├── numbaUtils.py
│   │   ├── randomevents.py
│   │   ├── readme.md
│   │   ├── taktimecounter.py
│   │   ├── taktimecounter.pyx
│   │   ├── typeutils.py
│   │   └── typeutils.pyx
│   ├── variable.py
│   └── visualize
│       ├── __init__.py
│       ├── hat.png
│       ├── mainwindow.py
│       ├── pg2.py
│       ├── readme.md
│       └── takagiwidgets
│           ├── __init__.py
│           ├── anime
│           │   ├── __init__.py
│           │   ├── baseanimewidget.py
│           │   └── pganimewidget.py
│           ├── colorutils.py
│           ├── controlbar.py
│           ├── customizedwidgets
│           │   ├── __init__.py
│           │   ├── label.py
│           │   ├── pushbutton.py
│           │   ├── radiobutton.py
│           │   └── scrollbar.py
│           ├── menubar.py
│           ├── module1.py
│           ├── plotwidgets
│           │   ├── __init__.py
│           │   ├── baseplotwidget.py
│           │   ├── pgbarwidget.py
│           │   ├── pgplotwidget.py
│           │   └── plotwidgetfactory.py
│           └── valuewidgets
│               ├── __init__.py
│               ├── basevaluewidget.py
│               ├── valuebuttonwidget.py
│               ├── valuescrollwidget.py
│               └── valuewidgetfactory.py
├── tutorial.md
├── uploadTopip.sh
└── 新建文本.txt

25 directories, 106 files