https://github.com/PublicHealthDynamicsLab/FRED
Revision a45e04ad99c865724a3c2b1a2d3fd979b3c6be88 authored by John Grefenstette on 07 January 2016, 16:32:02 UTC, committed by John Grefenstette on 07 January 2016, 16:32:02 UTC
1 parent 9bc2dce
Raw File
Tip revision: a45e04ad99c865724a3c2b1a2d3fd979b3c6be88 authored by John Grefenstette on 07 January 2016, 16:32:02 UTC
working markov epidemic model
Tip revision: a45e04a
Decision.h
/*
  This file is part of the FRED system.

  Copyright (c) 2010-2015, University of Pittsburgh, John Grefenstette,
  Shawn Brown, Roni Rosenfield, Alona Fyshe, David Galloway, Nathan
  Stone, Jay DePasse, Anuroop Sriram, and Donald Burke.

  Licensed under the BSD 3-Clause license.  See the file "LICENSE" for
  more information.
*/

//
//
// File: Decision.h
//

#ifndef _FRED_DECISION_H
#define _FRED_DECISION_H

#include <iostream>
#include <string>
#include <list>

class Policy;
class Person;

using namespace std;

class Decision{
  
protected:
  string name;
  string type; 
  Policy *policy;  // This is the policy that the decision belongs to
  
public:
  Decision();
  Decision(Policy *p);
  virtual ~Decision();
  
  /**
   * @return the name of this Decision
   */
  string get_name() const { return name; }

  /**
   * @return the type of this Decision
   */
  string get_type() const { return type; }
  
  /**
   * Evaluate the Decision for an agent and disease on a given day
   *
   * @param person a pointer to a Person object
   * @param disease the disease to evaluate for
   * @param current_day the simulation day
   *
   * @return the evaluation value
   */
  virtual int evaluate(Person* person, int disease, int current_day) = 0;  
};
#endif
back to top