#![allow(unexpected_cfgs)]
#[allow(unexpected_cfgs)]
#[cfg(all(feature = "integration-tests", feature = "__has_scirs_backend"))]
mod integration_tests {
use tensorlogic_compiler::{
compile_to_einsum, compile_to_einsum_with_context, CompilationConfig, CompilerContext,
};
use tensorlogic_infer::TlAutodiff;
use tensorlogic_ir::{EinsumGraph, TLExpr, Term};
use tensorlogic_scirs_backend::Scirs2Exec;
}
#[test]
fn integration_tests_placeholder() {
#[cfg(feature = "integration-tests")]
{
eprintln!("Warning: integration-tests feature enabled but tensorlogic-scirs-backend not available");
eprintln!("These tests require tensorlogic-scirs-backend (circular dev-dependency)");
}
}