Skip to content

Commit

Permalink
make degree stats immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebd99 committed Dec 7, 2023
1 parent 0054d84 commit 513e73d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/DegreeStats.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ end

############################ MinDegStats ################################################

mutable struct MinDegStats <:DegreeStats
struct MinDegStats <:DegreeStats
min_in::Float64
min_out::Float64
end
Expand Down Expand Up @@ -132,7 +132,7 @@ end

############################ AvgDegStats ################################################

mutable struct AvgDegStats <:DegreeStats
struct AvgDegStats <:DegreeStats
avg_in::Float64
avg_out::Float64
end
Expand Down Expand Up @@ -182,7 +182,7 @@ end

############################ MaxDegStats ################################################

mutable struct MaxDegStats <:DegreeStats
struct MaxDegStats <:DegreeStats
max_in::Float64
max_out::Float64
end
Expand Down

0 comments on commit 513e73d

Please sign in to comment.