Patch the production of the ratio file

This commit is contained in:
Eric Coissac
2025-02-27 10:19:39 +01:00
parent 791d253edc
commit 0067152c2b
6 changed files with 64 additions and 58 deletions

View File

@ -23,7 +23,7 @@ func MakeSet[E comparable](vals ...E) Set[E] {
// It takes a variadic parameter of type E, where E is a comparable type.
// It returns a pointer to a Set of type E.
func NewSet[E comparable](vals ...E) *Set[E] {
s := MakeSet[E](vals...)
s := MakeSet(vals...)
return &s
}