使用 bc2cnf 生成 DIMACS CNF 文件丢失并且
我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用命令行参数 -nosimplify 抑制 bc2cnf 优化。
结果是
bc2cnf 有许多有用的参数。尝试
bc2cnf -?
获取帮助。Use commandline parameter
-nosimplify
to suppressbc2cnf
optimization.Result is
bc2cnf
has a number of useful parameters. Trybc2cnf -?
to get help.