Skip to content

Generalize weight used in dijkstra algorithm #225

Generalize weight used in dijkstra algorithm

Generalize weight used in dijkstra algorithm #225

Workflow file for this run

name: Run examples on CMake
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Configure CMake
working-directory: ${{github.workspace}}/examples
run: cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
working-directory: ${{github.workspace}}/examples
run: cmake --build build
- name: Stalingrado
working-directory: ${{github.workspace}}/examples
run: make stalingrado
- name: Slow Charge TL
working-directory: ${{github.workspace}}/examples
run: make slow_charge_tl
- name: Slow Charge RB
working-directory: ${{github.workspace}}/examples
run: make slow_charge_rb