https://github.com/javierbarbero/DataEnvelopmentAnalysis.jl
Revision 6082363c791926c459162116346a794deb8af056 authored by Javier Barbero on 20 March 2020, 16:34:20 UTC, committed by Javier Barbero on 20 March 2020, 16:34:20 UTC
Update weights calculation in input and output oriented additive model.
1 parent d7e1f10
Raw File
Tip revision: 6082363c791926c459162116346a794deb8af056 authored by Javier Barbero on 20 March 2020, 16:34:20 UTC
Update weights in input and output oriented additive model.
Tip revision: 6082363
.travis.yml
language: julia
codecov: true
coveralls: true

os:
    - linux
    - osx
julia:
    - 1.0
    - 1.1
    - 1.2
    - 1.3

jobs:
  include:
    - stage: "Documentation"
      julia: 1.2
      os: linux
      script:
        - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
                                               Pkg.instantiate()'
        - julia --project=docs/ docs/make.jl
      after_success: skip
back to top