colbylarue / boruvka

0 stars 0 forks source link

Boruvka

Implementation of the boruvka MST algorithm. These instructions assume VS Code is being used.

Setup

Assuming git and golang are both installed. First clone git repo. Navigate to graph directory in command line and install the local graph as a go package (Note: if you make changes to the graph library you may need to do a go install again)

cd wherever
git clone https://github.com/colbylarue/boruvka.git
cd boruvka
go install

Open VSCode. Open Folder. Select the folder you just cloned.

Usage

example

# returns 'words'
foobar.pluralize('word')

# returns 'geese'
foobar.pluralize('goose')

Contributing

Create a new branch to work in. Push your local changes to your remote branch Create a Pull Request to merge into master. a. select a reviewer. b. address review comments if applicable. b. merge when approved.

License