xref
: /
XiangShan
/
src
/
main
/
scala
/
utils
/
MathUtils.scala
(revision 6ce1096467c77f9a13c9ea0e57b870cd1fb67270)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
package
utils
2
3
object
MathUtils
{
4
def
IntToOH
(
n
:
Int
):
BigInt
= {
5
BigInt
(
1
) <<
n
6
}
7
}
8