Skip to content

Commit e50f9ab

Browse files
Merge pull request #95 from JuliaDiffEq/bigints
Utilize precompilable bigints
2 parents 46c595b + 54b76cf commit e50f9ab

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/tableaus.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -594,10 +594,10 @@ function SKenCarpTableau(T,T2)
594594
# bhat2 = -T(10771552573575//22201958757719)
595595
# bhat3 = T(9247589265047//10645013368117)
596596
# bhat4 = T(2193209047091//5459859503100)
597-
btilde1 = T(parse(BigInt,"681815649026867975666107")//parse(BigInt,"25159934323302256049469295")) # bhat1-a41
598-
btilde2 = T(parse(BigInt,"18411887981491912264464127")//parse(BigInt,"167175311446532472108584143")) # bhat2-a42
599-
btilde3 = T(parse(BigInt,"-12719313754959329011138489")//parse(BigInt,"123410692144842870217698057")) # bhat3-a43
600-
btilde4 = T(parse(BigInt,"-47289384293135913063989")//parse(BigInt,"1383962894467812063558225")) # bhat4-γ
597+
btilde1 = T(BigInt(681815649026867975666107)//BigInt(25159934323302256049469295)) # bhat1-a41
598+
btilde2 = T(BigInt(18411887981491912264464127)//BigInt(167175311446532472108584143)) # bhat2-a42
599+
btilde3 = T(BigInt(-12719313754959329011138489)//BigInt(123410692144842870217698057)) # bhat3-a43
600+
btilde4 = T(BigInt(-47289384293135913063989)//BigInt(1383962894467812063558225)) # bhat4-γ
601601
c3 = T2(3//5)
602602
c2 = 2γ
603603
θ = c3/c2
@@ -618,10 +618,10 @@ function SKenCarpTableau(T,T2)
618618
eb2 = T(-4482444167858//7529755066697 )
619619
eb3 = T(11266239266428//11593286722821)
620620
eb4 = T(1767732205903//4055673282236)
621-
ebtilde1 = T(parse(BigInt,"681815649026867975666107")//parse(BigInt,"25159934323302256049469295"))
622-
ebtilde2 = T(parse(BigInt,"18411887981491912264464127")//parse(BigInt,"167175311446532472108584143"))
623-
ebtilde3 = -T(parse(BigInt,"12719313754959329011138489")//parse(BigInt,"123410692144842870217698057"))
624-
ebtilde4 = -T(parse(BigInt,"47289384293135913063989")//parse(BigInt,"1383962894467812063558225"))
621+
ebtilde1 = T(BigInt(681815649026867975666107)//BigInt(25159934323302256049469295))
622+
ebtilde2 = T(BigInt(18411887981491912264464127)//BigInt(167175311446532472108584143))
623+
ebtilde3 = -T(BigInt(12719313754959329011138489)//BigInt(123410692144842870217698057))
624+
ebtilde4 = -T(BigInt(47289384293135913063989)//BigInt(1383962894467812063558225))
625625

626626
# Noise Tableau
627627

0 commit comments

Comments
 (0)