[Mlir-commits] [mlir] [MLIR][Presburger] Generating functions and quasi-polynomials for Barvinok's algorithm (PR #75702)

Arjun P llvmlistbot at llvm.org
Sat Dec 16 12:57:05 PST 2023


================
@@ -0,0 +1,227 @@
+//===- Barvinok.h - Barvinok's Algorithm -----------*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
----------------
Superty wrote:

Please don't write the whole implementation in the header. Move it into a .cpp file. If the generating function is only used internally, you can move the whole class into the .cpp if you want, no reason to expose it.

https://github.com/llvm/llvm-project/pull/75702


More information about the Mlir-commits mailing list