Skip to content

Commit

Permalink
remove interpolations.jl from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmsull committed Aug 12, 2024
1 parent 241d7ce commit 7b30704
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using Test
using DelimitedFiles
using LinearAlgebra
using ForwardDiff
using Interpolations, DataInterpolations
using DataInterpolations
using Printf

include("testbessel.jl")
Expand Down Expand Up @@ -166,15 +166,7 @@ end
# class_Cℓs = readdlm("data/class_rough_ttteee_unlensed.dat")
camb_Cℓs = readdlm("data/camb_rough_ttteee_unlensed.dat")

#FIXME update
#ratios
# itptt = linear_interpolation(camb_Cℓs[1,:], camb_Cℓs[2,:])
# itpte = linear_interpolation(camb_Cℓs[1,:], camb_Cℓs[3,:])
# itpee = linear_interpolation(camb_Cℓs[1,:], camb_Cℓs[4,:])
# #make same interpolation to ensure same interp error
# itptt_b = linear_interpolation(ℓs, @.(ℓfac * Cℓtt))
# itpte_b = linear_interpolation(ℓs, @.(ℓfac * Cℓte))
# itpee_b = linear_interpolation(ℓs, @.(ℓfac * Cℓee))
itptt = LinearInterpolation(camb_Cℓs[1,:], camb_Cℓs[2,:])
itpte = LinearInterpolation(camb_Cℓs[1,:], camb_Cℓs[3,:])
itpee = LinearInterpolation(camb_Cℓs[1,:], camb_Cℓs[4,:])
Expand Down

0 comments on commit 7b30704

Please sign in to comment.