Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/symbolic/ginac/utils.h: Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Aug 16, 2021
1 parent fc29c1d commit 8223127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/symbolic/ginac/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ inline int compare_pointers(const T * a, const T * b)
/** Truncated multiplication with golden ratio, for computing hash values. */
inline unsigned golden_ratio_hash(intptr_t n)
{
uint64_t l = n * UINT64_C(0x4f1bbcddUL);
uint64_t l = n * UINT64_C(0x4f1bbcdd);
return (unsigned)l;
}

Expand Down

0 comments on commit 8223127

Please sign in to comment.