Skip to content

Use a better PRNG for generating the initial weights and the evolution #27

Use a better PRNG for generating the initial weights and the evolution

Use a better PRNG for generating the initial weights and the evolution #27

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-engine:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: cd engine && make enginetest
test-engine:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: cd engine && make test
build-initial-population:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: cd initial-population && make
build-evolve:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: cd evolve && make
test-evolve:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: cd evolve && make test