Adjust weight function

This commit is contained in:
Anthony Wang 2022-03-30 08:50:59 -05:00
parent 71dbd4904d
commit 1bca3da2e7
Signed by: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -5,7 +5,6 @@ import (
"database/sql"
"flag"
"fmt"
"math/bits"
"os"
"strings"
@ -56,7 +55,7 @@ func main() {
fmt.Println(val)
}
_, err = db.Exec("INSERT INTO cards VALUES(?, ?, ?, ?)", i, 1<<(bits.LeadingZeros(uint(i))-40), key, val)
_, err = db.Exec("INSERT INTO cards VALUES(?, ?, ?, ?)", i, 1<<(30-i/50), key, val)
i++
}
}