This file contains hidden or 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
/* | |
* func_names.cpp | |
* | |
* Created on: Dec 1, 2011 | |
* Author: tlmaloney | |
*/ | |
#include "func_names.h" | |
// boundary condition along tau_final |
This file contains hidden or 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
''' | |
Created on Dec 8, 2011 | |
@author: tlmaloney | |
''' | |
import Asset | |
class Annuity(Asset.Asset): | |
''' |
This file contains hidden or 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
''' | |
Created on Nov 25, 2011 | |
@author: tlmaloney | |
''' | |
class Payment(object): | |
''' | |
A payment is the transfer of ownership and possession of an amount of asset from Agent A to | |
Agent B on a specific date. |
This file contains hidden or 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
''' | |
Created on Nov 26, 2011 | |
@author: tlmaloney | |
''' | |
import Payment | |
class Price(object): | |
''' |
This file contains hidden or 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
''' | |
Created on Nov 25, 2011 | |
@author: tlmaloney | |
''' | |
class Market(object): | |
''' | |
A market provides information about observables, like Assets, Prices, | |
Agents, DiscountFactorCurves, etc. |
This file contains hidden or 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
''' | |
Created on Nov 25, 2011 | |
@author: tlmaloney | |
''' | |
class Agent(object): | |
''' | |
An Agent has a name and Unique ID. | |
''' |
NewerOlder