An open API service indexing awesome lists of open source software.

https://github.com/imcvampire/ant-colony-optimization

A project from class IT4040 in HUST
https://github.com/imcvampire/ant-colony-optimization

Last synced: 12 months ago
JSON representation

A project from class IT4040 in HUST

Awesome Lists containing this project

README

          

Ant Colony Optimization
=========

([English below](#requirement))

Yêu cầu
-------

- NodeJS v6.9.0 hoặc mới hơn
- NPM v3.10.8 hoặc mới hơn

Cài đặt các gói phần mềm cần thiết
----------------------------------

```bash
npm i
```

Biên dịch chương trình
----------------------

```bash
npm run build
```

Chạy chương trình
-----------------

```
npm start
```

hoặc

```
npm run server
```

Cấu trúc thư mục
----------------

```file-system
+ dist
+ report
+ src
- report.md
- slides.md

+ src
+ algo
- ant.js
- colony.js
- nn.js
- opt.js

+ dashboard
- graph.js

+ problem
- tsp.js

+ stuff
- math.js
- route.js

- index.html
- index.js
- style.css

- package.json
- index.js
- express.js
- webpack.config.js
- README.md
...
```

Requirement
-----------

- NodeJS v6.9.0 or later
- NPM v3.10.8 or later

Install Package Dependencies
----------------------------

```bash
npm i
```

Build Project
-------------

```bash
npm run build
```

Run Demo
--------

```
npm start
```

or

```
npm run server
```

Folder structure
----------------

```file-system
+ dist
+ report
+ src
- report.md
- slides.md

+ src
+ algo
- ant.js
- colony.js
- nn.js
- opt.js

+ dashboard
- graph.js

+ problem
- tsp.js

+ stuff
- math.js
- route.js

- index.html
- index.js
- style.css

- package.json
- index.js
- express.js
- webpack.config.js
- README.md
...
```