文件名称:quantlib_test:使用 QuantLib C++ 代码和 Ruby FFI 进行实验
文件大小:8KB
文件格式:ZIP
更新时间:2024-07-15 01:14:54
C++
通过 Ruby 和 FFI 访问的自定义 QuantLib C++ 代码 bundle install 安装 quantlib brew install quantlib 安装 boost(如果你使用它,则由 brew 安装) make all ruby test.rb 提供的文件演练 test_quantlib.h 声明 FFI 将调用的函数,以及函数将返回的返回值结构。 它还将它们定义为外部 C 函数,这样它们就不会被 C++ 编译器改名,以便 FFI 可以调用它们。 test_quantlib.cc 示例quantlib代码,实现头文件中定义的函数 量化库 附加到由链接器创建的共享库的 FFI 模块。 测试文件 使用 FFI 模块调用共享库 生成文件的演练 test_quantlib.o 来自 test_quantlib.cc 编译的编译输出文件 test_quant
【文件预览】:
quantlib_test-master
----test_quantlib.h(176B)
----test.rb(119B)
----Gemfile(41B)
----README.md(1KB)
----Makefile(243B)
----quantlib.rb(197B)
----Gemfile.lock(99B)
----.gitignore(9B)
----test_quantlib.cc(31KB)