carl  24.04
Computer ARithmetic Library
typetraits.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace carl {
4 
5 template<typename T> struct is_polynomial_type: std::false_type {};
6 template<typename T> struct needs_cache_type : std::false_type {};
7 template<typename T> struct needs_context_type : std::false_type {};
8 template<typename T> struct is_factorized_type : std::true_type {};
9 
10 }
carl is the main namespace for the library.