EconForge / dolo.py

Economic modelling in python
BSD 2-Clause "Simplified" License
98 stars 72 forks source link

ar1 correction #197

Closed ezgioz closed 4 years ago

ezgioz commented 4 years ago

"self.ρ = ρ" was missing, added as below

    @greek_tolerance
    def __init__(self, ρ=None, σ=None, μ=None):
        self.ρ = ρ
        self.σ = σ
        self.μ = μ
        self.d = 1