8000 GitHub - phds/cgrasp: This is an implementation of the cgrasp optimisation algorithm.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ cgrasp Public

This is an implementation of the cgrasp optimisation algorithm.

License

Notifications You must be signed in to change notification settings

phds/cgrasp

Repository files navigation

Required

By following those steps, you'll install the application development environment

  1. Clone Git repository:
$ git clone git@github.com:phds/cgrasp.git
  1. Install Python or open a Terminal and type the following:
$ [sudo] apt-get install python2.7-dev
  1. Create a virtualenv to host the application: You may need sudo to install virtualenv globally
# install virtualenv tool manager via pip
$ [sudo] pip install virtualenv
# create a new virtualenv folder called venv
$ virtualenv venv
# activate your virtualenv!
$ source venv/bin/activate
  1. Install application dependencies via pip: /!\ Be sure to have your virtualenv activated /!\ This is stipulated by (venv) in front of your terminal prompt.
(venv) $ pip install -r requirements.txt
  1. Install GNU MPFR library to deal with floating points precision:

  2. Install MPFR's dependencies:

(venv) $ sudo apt-get install libmpfr-dev libmpfr-doc libmpfr4 libmpfr4-dbg
  1. In order to parser command line you need to install boost library:
(venv) $ sudo apt-get install libboost-all-dev

About

This is an implementation of the cgrasp optimisation algorithm.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0