Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Please refer to [how to build](#building-the-native-addon) below
| -------- | ------------- | ------- | ------------- |
| 1.7.1 | 1.7.0 | 6.9.1 | 0.1.x |
| 1.8.1 | 1.8.0 | 6.9.5 | 0.2.x |
| 1.9.2 | 1.9.0 | 6.9.5 | 0.3.x |

## Building the native addon

Expand Down Expand Up @@ -133,4 +134,4 @@ ql.SymmetricSchurDecomposition('mtx#1',mtx1).then(function(obj){ //C2 formula: =
0.01580103250921176,
0.01377474504269164,
0.012784934140218302 ]
```
```
4 changes: 2 additions & 2 deletions lib/quantlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ exports.CreditBasketSetLossModel = promisify(rawApi.CreditBasketSetLossModel);
exports.CreditBasketSize = promisify(rawApi.CreditBasketSize);
exports.CreditBasketLiveNotional = promisify(rawApi.CreditBasketLiveNotional);
exports.CreditBasketLoss = promisify(rawApi.CreditBasketLoss);
exports.CrediBasketAttachLive = promisify(rawApi.CrediBasketAttachLive);
exports.CrediBasketDetachLive = promisify(rawApi.CrediBasketDetachLive);
exports.CreditBasketAttachLive = promisify(rawApi.CreditBasketAttachLive);
exports.CreditBasketDetachLive = promisify(rawApi.CreditBasketDetachLive);
exports.ExpectedTrancheLoss = promisify(rawApi.ExpectedTrancheLoss);
exports.CreditBasketPercentile = promisify(rawApi.CreditBasketPercentile);
exports.CreditBasketESF = promisify(rawApi.CreditBasketESF);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "quantlib",
"description": "QuantLib Asyn Bindings for Node.js",
"version": "0.2.1",
"version": "0.3.0",
"keywords": [
"quantlib"
],
Expand Down
4 changes: 2 additions & 2 deletions quantlibnode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,8 @@ NAN_MODULE_INIT(init){
Nan::SetMethod(target, "CreditBasketSize", QuantLibNode::CreditBasketSize);
Nan::SetMethod(target, "CreditBasketLiveNotional", QuantLibNode::CreditBasketLiveNotional);
Nan::SetMethod(target, "CreditBasketLoss", QuantLibNode::CreditBasketLoss);
Nan::SetMethod(target, "CrediBasketAttachLive", QuantLibNode::CrediBasketAttachLive);
Nan::SetMethod(target, "CrediBasketDetachLive", QuantLibNode::CrediBasketDetachLive);
Nan::SetMethod(target, "CreditBasketAttachLive", QuantLibNode::CreditBasketAttachLive);
Nan::SetMethod(target, "CreditBasketDetachLive", QuantLibNode::CreditBasketDetachLive);
Nan::SetMethod(target, "ExpectedTrancheLoss", QuantLibNode::ExpectedTrancheLoss);
Nan::SetMethod(target, "CreditBasketPercentile", QuantLibNode::CreditBasketPercentile);
Nan::SetMethod(target, "CreditBasketESF", QuantLibNode::CreditBasketESF);
Expand Down
4 changes: 2 additions & 2 deletions quantlibnode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -421,8 +421,8 @@ class QuantLibNode : public Nan::ObjectWrap {
static NAN_METHOD(CreditBasketSize);
static NAN_METHOD(CreditBasketLiveNotional);
static NAN_METHOD(CreditBasketLoss);
static NAN_METHOD(CrediBasketAttachLive);
static NAN_METHOD(CrediBasketDetachLive);
static NAN_METHOD(CreditBasketAttachLive);
static NAN_METHOD(CreditBasketDetachLive);
static NAN_METHOD(ExpectedTrancheLoss);
static NAN_METHOD(CreditBasketPercentile);
static NAN_METHOD(CreditBasketESF);
Expand Down
Loading