diff --git a/hog/quadrature/tabulation.py b/hog/quadrature/tabulation.py
index cae9b41b1ce76abede9fe73c9aa8e0cd1a1e7ed9..c336f932608126b1221ae43f692faf08482178d1 100644
--- a/hog/quadrature/tabulation.py
+++ b/hog/quadrature/tabulation.py
@@ -66,9 +66,6 @@ class Tabulation:
         if not isinstance(factor, sp.MatrixBase):
             factor = sp.Matrix([factor])
 
-        if all(f.is_constant() for f in factor):
-            return factor
-
         replacement_symbols = sp.zeros(factor.rows, factor.cols)
         for r in range(factor.rows):
             for c in range(factor.cols):