1
0
mirror of https://github.com/ellmau/adf-obdd.git synced 2025-12-20 09:39:38 +01:00

Use unoptimised hybrid step for better presentation

This commit is contained in:
Stefan Ellmauthaler 2022-09-06 11:16:57 +02:00 committed by monsterkrampe
parent 5d3814cbc0
commit 8f3fb91573
No known key found for this signature in database
GPG Key ID: B8ADC1F5A5CE5057

View File

@ -60,7 +60,7 @@ async fn solve(req_body: web::Json<SolveReqBody>) -> impl Responder {
Parsing::Hybrid => {
let bd_adf = BdAdf::from_parser(&parser);
log::info!("[Start] translate into naive representation");
let naive_adf = bd_adf.hybrid_step();
let naive_adf = bd_adf.hybrid_step_opt(false);
log::info!("[Done] translate into naive representation");
naive_adf