Revision 3259407b1fa597becb11644b14cd21d3b1cc57a3 authored by Javier Barbero on 28 March 2022, 13:19:02 UTC, committed by GitHub on 28 March 2022, 13:19:02 UTC
1 parent 3e2df08
Raw File
runtests.jl
using DataEnvelopmentAnalysis
using Distributions
using LinearAlgebra
using Random
using SparseArrays
using StableRNGs
using Test

@testset "DataEnvelopmentAnalysis" begin

    include("dea.jl")
    include("deam.jl")
    include("deaadd.jl")
    include("deaddf.jl")
    include("deaddfm.jl")
    include("deagdf.jl")
    include("dearussell.jl")
    include("deaerg.jl")
    include("deamddf.jl")
    include("deaholder.jl")
    include("dearddf.jl")

    include("econoptim.jl")
    include("deacost.jl")
    include("dearevenue.jl")
    include("deaprofit.jl")
    include("deaprofitability.jl")

    include("malmquist.jl")

    include("peers.jl")

    include("deabigdata.jl")

end
back to top