DiscretizedAsset Class Reference#include <ql/discretizedasset.hpp>
Inheritance diagram for DiscretizedAsset:
[legend]List of all members.
Detailed Description
Discretized asset class used by numerical methods.
|
Public Member Functions |
|
Time | time () const |
Time & | time () |
const Array & | values () const |
Array & | values () |
const boost::shared_ptr< NumericalMethod > & | method () const |
|
Users of discretized assets should use these methods in order to initialize, evolve and take the present value of the assets. They call the corresponding methods in the NumericalMethod interface, to which we refer for documentation.
|
void | initialize (const boost::shared_ptr< NumericalMethod > &, Time t) |
void | rollback (Time to) |
void | partialRollback (Time to) |
Real | presentValue () |
|
These methods (that developers should override when deriving from DiscretizedAsset) are to be used by numerical methods and not directly by users, with the exception of preAdjustValues() and postAdjustValues() that can be used together with partialRollback().
|
virtual void | reset (Size size)=0 |
void | preAdjustValues () |
void | postAdjustValues () |
void | adjustValues () |
virtual std::vector< Time > | mandatoryTimes () const =0 |
Protected Member Functions |
bool | isOnTime (Time t) const |
virtual void | preAdjustValuesImpl () |
virtual void | postAdjustValuesImpl () |
Protected Attributes |
Time | time_ |
Time | latestPreAdjustment_ |
Time | latestPostAdjustment_ |
Array | values_ |
Member Function Documentation
virtual void reset |
( |
Size |
size |
) |
[pure virtual] |
|
|
This method will be invoked after rollback and before any other asset (i.e., an option on this one) has any chance to look at the values. For instance, payments happening at times already spanned by the rollback will be added here.
This method is not virtual; derived classes must override the protected preAdjustValuesImpl() method instead. |
void postAdjustValues |
( |
|
) |
|
|
|
This method will be invoked after rollback and after any other asset had their chance to look at the values. For instance, payments happening at the present time (and therefore not included in an option to be exercised at this time) will be added here.
This method is not virtual; derived classes must override the protected postAdjustValuesImpl() method instead. |
|
This method performs both pre- and post-adjustment |
virtual std::vector<Time> mandatoryTimes |
( |
|
) |
const [pure virtual] |
|
|
This method returns the times at which the numerical method should stop while rolling back the asset. Typical examples include payment times, exercise times and such.
- Note:
- The returned values are not guaranteed to be sorted.
Implemented in DiscretizedDiscountBond, and DiscretizedOption. |
bool isOnTime |
( |
Time |
t |
) |
const [protected] |
|
|
This method checks whether the asset was rolled at the given time. |
virtual void preAdjustValuesImpl |
( |
|
) |
[protected, virtual] |
|
|
This method performs the actual pre-adjustment |
virtual void postAdjustValuesImpl |
( |
|
) |
[protected, virtual] |
|
|