Skip to content

Commit 4933662

Browse files
committed
update code comments
1 parent 9647569 commit 4933662

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
- pull_request
55
jobs:
66
test:
7-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
7+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.aarch64 }} - ${{ github.event_name }}
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
fail-fast: false
@@ -24,7 +24,7 @@ jobs:
2424
- uses: julia-actions/setup-julia@v2
2525
with:
2626
version: ${{ matrix.version }}
27-
arch: ${{ matrix.arch }}
27+
arch: ${{ matrix.aarch64 }}
2828
- uses: actions/cache@v4
2929
env:
3030
cache-name: cache-artifacts

src/OperationsResearchModels.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ using JuMP, HiGHS
66
# solve(t::TransportationProblem)::TransportationResult
77
# solve(s::ShortestPathProblem)::ShortestPathResult
88
# solve(m::MaximumFlowProblem)::MaximumFlowResult
9+
# solve(m::MinimumCostFlowProblem)::MinimumCostFlowResult
10+
# solve(m::CpmProblem)::CpmResult
11+
# solve(m: PertProblem)::PertResult
912
# solve(a::AssignmentProblem)::AssignmentResult
1013
# solve(g::Game)::GameResult
1114
# solve(m::MstProblem)::MstResult

0 commit comments

Comments
 (0)