Skip to content

Commit

Permalink
update project files, fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pcaspers committed Mar 19, 2024
1 parent 628ebc5 commit 3e1e10f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions QuantLib.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2073,6 +2073,7 @@
<ClCompile Include="ql\experimental\math\fireflyalgorithm.cpp" />
<ClCompile Include="ql\experimental\math\gaussiancopulapolicy.cpp" />
<ClCompile Include="ql\experimental\math\gaussiannoncentralchisquaredpolynomial.cpp" />
<ClCompile Include="ql\experimental\math\laplaceinterpolation.cpp" />
<ClCompile Include="ql\experimental\math\multidimintegrator.cpp" />
<ClCompile Include="ql\experimental\math\multidimquadrature.cpp" />
<ClCompile Include="ql\experimental\math\particleswarmoptimization.cpp" />
Expand Down
3 changes: 3 additions & 0 deletions QuantLib.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -6173,6 +6173,9 @@
<ClCompile Include="ql\legacy\libormarketmodels\lmvolmodel.cpp">
<Filter>legacy\libormarketmodels</Filter>
</ClCompile>
<ClCompile Include="ql\experimental\math\laplaceinterpolation.cpp">
<Filter>experimental\math</Filter>
</ClCompile>
<ClCompile Include="ql\experimental\volatility\abcdatmvolcurve.cpp">
<Filter>experimental\volatility</Filter>
</ClCompile>
Expand Down
2 changes: 1 addition & 1 deletion ql/experimental/math/laplaceinterpolation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ namespace QuantLib {
}
}
if (isCorner) {
// shandling of the "corners", all second derivs are zero in the op
// handling of the "corners", all second derivs are zero in the op
// this directly generalizes Numerical Recipes, 3rd ed, eq 3.8.6
Real sum_corner_h =
std::accumulate(corner_h.begin(), corner_h.end(), 0.0, std::plus<Real>());
Expand Down

0 comments on commit 3e1e10f

Please sign in to comment.