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
- Host: GitHub
- URL: https://github.com/imcvampire/ant-colony-optimization
- Owner: imcvampire
- License: mit
- Created: 2016-10-19T10:18:40.000Z (over 9 years ago)
- Default Branch: dev
- Last Pushed: 2016-12-13T15:14:11.000Z (over 9 years ago)
- Last Synced: 2025-01-31T12:23:29.528Z (over 1 year ago)
- Language: JavaScript
- Size: 8.39 MB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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
...
```