Last active
October 9, 2019 16:02
-
-
Save thunderInfy/fff6440ce3d2650b4f13e5a45beeeab8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#IMPORTS | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import seaborn as sns | |
from scipy.stats import poisson | |
import sys | |
#Problem Parameters | |
class jcp: | |
@staticmethod | |
def max_cars(): | |
return 20 | |
@staticmethod | |
def γ(): | |
return 0.9 | |
@staticmethod | |
def credit_reward(): | |
return 10 | |
@staticmethod | |
def moving_reward(): | |
return -2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment