使用 bc2cnf 生成 DIMACS CNF 文件丢失并且

发布于 2025-01-13 16:26:54 字数 466 浏览 0 评论 0原文

我尝试使用 bc2cnf 工具生成布尔方程的 DIMACS CNF 文件。

输入文件包含与门的方程,如下所示:

BC1.1
f := A & B;
ASSIGN f;

使用的命令: ./bc2cnf -v inp.txt opt.txt

输出文件中的内容:

c The instance was satisfiable
c A <-> T
c B <-> T
c f <-> T
p cnf 1 1
1 0

在这里,可以观察到正确的不生成与门的 DIMACS CNF 格式。

请让我知道如何纠正这个问题。

I tried using the bc2cnf tool to generate the DIMACS CNF file of a boolean equation.

The input file contains the equation of an AND gate as shown below :

BC1.1
f := A & B;
ASSIGN f;

Command used: ./bc2cnf -v inp.txt opt.txt

Content in the output file:

c The instance was satisfiable
c A <-> T
c B <-> T
c f <-> T
p cnf 1 1
1 0

Here, it can be observed that the correct DIMACS CNF format of the AND gate is not generated.

Please let me know how this problem can be rectified.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小梨窩很甜 2025-01-20 16:26:54

使用命令行参数 -nosimplify 抑制 bc2cnf 优化。

结果是

c f <-> 1
c B <-> 2
c A <-> 3
p cnf 3 4
-1 2 0
-1 3 0
1 -3 -2 0
1 0

bc2cnf 有许多有用的参数。尝试 bc2cnf -? 获取帮助。

Use commandline parameter -nosimplify to suppress bc2cnf optimization.

Result is

c f <-> 1
c B <-> 2
c A <-> 3
p cnf 3 4
-1 2 0
-1 3 0
1 -3 -2 0
1 0

bc2cnf has a number of useful parameters. Try bc2cnf -? to get help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文