janymuong / prep-for-abm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Agent-Based Modeling: Mock solution

This is an implementation of anAgent-Based Model using messa Python package. We implement a SIR-like model. Cab be exrended to:

- Susceptible
- Exposed 
- Infected
- Recovered
- etc

Attempted to make a UI, to set model parameters with minimum effort.


Git Branching

prep-for-abm practice repository on:
basic branching and merging - we love PRs!

This is a project done as part of preparing for collaboration on an Agent Based Modeling project - coming soon :)

How It Works - In Commandline;

1.1 Creating a Branch

You can create a branch this way, and switcht to it.

git branch abm-agent
git checkout abm-agent
# shorthand: git checkout -b abm-agent

1.2 Creating a Branch pointer

The way to do that is making changes to repo eg creating new files or editing existing files. Doing so moves the abm-agent branch forward, because you have it checked out (that is, your HEAD is pointing to it):

$ vim index.html
$ git commit -a -m 'Create new footer [issue 53]'

1.3 Delete Branch

will be updated/or not

1.4 Merging

will be updated/or not

Appendix - Resources:

About

License:GNU General Public License v3.0


Languages

Language:Python 86.4%Language:Makefile 12.0%Language:Shell 1.6%