Skip to content

Commit 8b9fc9c

Browse files
committed
bernoulli, beta, exponential, gamma, lognormal, binomial, weibull
1 parent 063713e commit 8b9fc9c

File tree

6 files changed

+1305
-9
lines changed

6 files changed

+1305
-9
lines changed

src/pyprob_cpp/CMakeLists.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project(libpyprob_cpp VERSION 0.1 LANGUAGES CXX)
22

3-
set (VERSION "0.1.12")
3+
set (VERSION "0.1.13")
44

55
add_library(pyprob_cpp SHARED src/pyprob_cpp.cpp)
66
target_link_libraries(pyprob_cpp "-ldl")
@@ -13,6 +13,9 @@ target_link_libraries(test_local_sample pyprob_cpp zmq)
1313
add_executable(test_set_defaults_and_addresses test/test_set_defaults_and_addresses.cpp)
1414
target_link_libraries(test_set_defaults_and_addresses pyprob_cpp zmq)
1515

16+
add_executable(test_distributions test/test_distributions.cpp)
17+
target_link_libraries(test_distributions pyprob_cpp zmq)
18+
1619
add_executable(test_gum test/test_gum.cpp)
1720
target_link_libraries(test_gum pyprob_cpp zmq)
1821

@@ -30,6 +33,7 @@ target_link_libraries(test_branching pyprob_cpp zmq)
3033

3134
add_test(test_local_sample_1 test_local_sample)
3235
add_test(test_set_defaults_and_addresses_1 test_set_defaults_and_addresses)
36+
add_test(test_distributions_1 test_distributions)
3337
add_test(test_gum_1 test_gum)
3438
add_test(test_gum_marsaglia_1 test_gum_marsaglia)
3539
add_test(test_gum_marsaglia_replacement_1 test_gum_marsaglia_replacement)

0 commit comments

Comments
 (0)