[package]
edition = "2021"
name = "xlog-solve"
version = "0.9.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Solver services used by XLOG exact inference and verification layers"
homepage = "https://github.com/BrainyBlaze/xlog"
documentation = "https://docs.rs/xlog-solve"
readme = "README.md"
keywords = [
"xlog",
"datalog",
"gpu",
"cuda",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BrainyBlaze/xlog"
[lib]
name = "xlog_solve"
path = "src/lib.rs"
[[example]]
name = "real_world"
path = "examples/real_world.rs"
[[test]]
name = "gpu_cdcl_tests"
path = "tests/gpu_cdcl_tests.rs"
[[test]]
name = "gpu_cdcl_workspace"
path = "tests/gpu_cdcl_workspace.rs"
[[test]]
name = "gpu_cnf_tests"
path = "tests/gpu_cnf_tests.rs"
[[test]]
name = "gpu_solver_accepted_evidence"
path = "tests/gpu_solver_accepted_evidence.rs"
[[test]]
name = "gpu_solver_production_reuse"
path = "tests/gpu_solver_production_reuse.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "no_dtoh_in_gpu_cdcl"
path = "tests/no_dtoh_in_gpu_cdcl.rs"
[[test]]
name = "real_world_tests"
path = "tests/real_world_tests.rs"
[[test]]
name = "solver_service_semantics"
path = "tests/solver_service_semantics.rs"
[[bench]]
name = "solver_bench"
path = "benches/solver_bench.rs"
harness = false
[dependencies.cudarc]
version = "0.19.4"
features = ["cuda-12040"]
[dependencies.xlog-core]
version = "0.9.2"
[dependencies.xlog-cuda]
version = "0.9.2"
[dependencies.xlog-runtime]
version = "0.9.2"
[dev-dependencies.criterion]
version = "0.5"