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

https://github.com/dyzio18/pso_js_parallel

Particle swarm optimization (PSO) in a parallel and serial variant
https://github.com/dyzio18/pso_js_parallel

Last synced: 5 months ago
JSON representation

Particle swarm optimization (PSO) in a parallel and serial variant

Awesome Lists containing this project

README

          

# PSO in JavaScript (Parallel)

Particle swarm optimization (PSO) in a parallel and serial variant

## Requirements
[node.js >= 11.6](https://nodejs.org/)

## Setup
1. Clone this repository.
2. Install the dependencies.

```sh
$ npm install
```

## Using webpack-dev-server
1. Start the local webpack-dev-server.

```sh
$ npm run serve
```

2. Navigate to [http://localhost:3000](http://localhost:3000).

## Building
When building, your code will be bundled and outputed to `/dist`.

### Building for development
```sh
$ npm run build
```

### Building for production
```sh
$ npm run build:prod
```