Skip to content

Commit

Permalink
Merge 54b76cf into 46c595b
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Aug 18, 2018
2 parents 46c595b + 54b76cf commit b142b95
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/tableaus.jl
Original file line number Diff line number Diff line change
Expand Up @@ -594,10 +594,10 @@ function SKenCarpTableau(T,T2)
# bhat2 = -T(10771552573575//22201958757719)
# bhat3 = T(9247589265047//10645013368117)
# bhat4 = T(2193209047091//5459859503100)
btilde1 = T(parse(BigInt,"681815649026867975666107")//parse(BigInt,"25159934323302256049469295")) # bhat1-a41
btilde2 = T(parse(BigInt,"18411887981491912264464127")//parse(BigInt,"167175311446532472108584143")) # bhat2-a42
btilde3 = T(parse(BigInt,"-12719313754959329011138489")//parse(BigInt,"123410692144842870217698057")) # bhat3-a43
btilde4 = T(parse(BigInt,"-47289384293135913063989")//parse(BigInt,"1383962894467812063558225")) # bhat4-γ
btilde1 = T(BigInt(681815649026867975666107)//BigInt(25159934323302256049469295)) # bhat1-a41
btilde2 = T(BigInt(18411887981491912264464127)//BigInt(167175311446532472108584143)) # bhat2-a42
btilde3 = T(BigInt(-12719313754959329011138489)//BigInt(123410692144842870217698057)) # bhat3-a43
btilde4 = T(BigInt(-47289384293135913063989)//BigInt(1383962894467812063558225)) # bhat4-γ
c3 = T2(3//5)
c2 = 2γ
θ = c3/c2
Expand All @@ -618,10 +618,10 @@ function SKenCarpTableau(T,T2)
eb2 = T(-4482444167858//7529755066697 )
eb3 = T(11266239266428//11593286722821)
eb4 = T(1767732205903//4055673282236)
ebtilde1 = T(parse(BigInt,"681815649026867975666107")//parse(BigInt,"25159934323302256049469295"))
ebtilde2 = T(parse(BigInt,"18411887981491912264464127")//parse(BigInt,"167175311446532472108584143"))
ebtilde3 = -T(parse(BigInt,"12719313754959329011138489")//parse(BigInt,"123410692144842870217698057"))
ebtilde4 = -T(parse(BigInt,"47289384293135913063989")//parse(BigInt,"1383962894467812063558225"))
ebtilde1 = T(BigInt(681815649026867975666107)//BigInt(25159934323302256049469295))
ebtilde2 = T(BigInt(18411887981491912264464127)//BigInt(167175311446532472108584143))
ebtilde3 = -T(BigInt(12719313754959329011138489)//BigInt(123410692144842870217698057))
ebtilde4 = -T(BigInt(47289384293135913063989)//BigInt(1383962894467812063558225))

# Noise Tableau

Expand Down

0 comments on commit b142b95

Please sign in to comment.