Skip to content

Commit

Permalink
corrected the function names
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsmierz committed Oct 13, 2023
1 parent 6e69a70 commit b984522
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lattice.jl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function pegasus_lattice(size::NTuple{3, Int})
end

# TODO masoud / tomek should be removed from function names
function pegasus_lattice_masoud(size::NTuple{3, Int})
function pegasus_lattice_alternative(size::NTuple{3, Int})
m, n, t = size
old = LinearIndices((1:8*t, 1:n, 1:m))
map = Dict(
Expand All @@ -99,7 +99,7 @@ function pegasus_lattice_masoud(size::NTuple{3, Int})
map
end

function pegasus_lattice_tomek(size::NTuple{3, Int})
function pegasus_lattice_old_numering(size::NTuple{3, Int})
m, n, t = size
old = LinearIndices((1:8*t, 1:n, 1:m))
map = Dict(
Expand Down

0 comments on commit b984522

Please sign in to comment.