上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 27 下一页
  2022年9月13日
摘要: 快速排序的标准代码 1 template <class T, class LessThan> 2 void sort(T* array, int size, LessThan lt) 3 { 4 if (size <= 15) 5 selectionSort(array, size, lt); 6 阅读全文
posted @ 2022-09-13 14:03 海阔凭鱼跃越 阅读(36) 评论(0) 推荐(0)
  2022年9月7日
摘要: Better Decision Heuristics in CDCL through Local Search and Target Phases Shaowei Cai shaoweicai.cs@gmail.com Xindi Zhang zhangxd@ios.ac.cn State Key 阅读全文
posted @ 2022-09-07 21:01 海阔凭鱼跃越 阅读(106) 评论(0) 推荐(0)
  2022年9月4日
该文被密码保护。 阅读全文
posted @ 2022-09-04 17:40 海阔凭鱼跃越 阅读(5) 评论(0) 推荐(0)
  2022年9月3日
摘要: Relaxed_LCMDCBD是近期主流求解器。其中本身具有导出proof证明UNSAT的相应代码。可以按照以下步骤激活相应代码,求解的同时输出相应drup格式的文件。 复活输出drup文件输出的代码1.在main.c文件头部设置 BoolOption drup 为 true StringOptio 阅读全文
posted @ 2022-09-03 09:21 海阔凭鱼跃越 阅读(66) 评论(0) 推荐(0)
  2022年8月30日
摘要: Proofs for Satisfiability Problems Marijn J.H. Heule and Armin Biere 1 The University of Texas at Austin, United States 2 Johannes Kepler University, 阅读全文
posted @ 2022-08-30 22:53 海阔凭鱼跃越 阅读(128) 评论(0) 推荐(0)
  2022年7月29日
摘要: core-tier2-local三个集合管理子句的文献:An Experimental Study of Permanently Stored Learned Clauses 文献1:2019,较新 Exploiting Glue Clauses to Design Effective CDCL B 阅读全文
posted @ 2022-07-29 09:20 海阔凭鱼跃越 阅读(147) 评论(0) 推荐(0)
  2022年7月24日
摘要: 1. 冲突子句中各个文字所在层的排查--(1)是否有仅有一个在决策层;(2)次大层是否为0层;如为0层,则推到出UNSAT; 1 struct ConflictData 2 { 3 ConflictData() : 4 nHighestLevel(-1), 5 bOnlyOneLitFromHigh 阅读全文
posted @ 2022-07-24 11:15 海阔凭鱼跃越 阅读(27) 评论(0) 推荐(0)
  2022年7月2日
摘要: 编辑环境变量path增加以下两个值: C:\Users\86183\anaconda3C:\Users\86183\anaconda3\Scripts 阅读全文
posted @ 2022-07-02 10:33 海阔凭鱼跃越 阅读(71) 评论(0) 推荐(0)
  2022年6月28日
该文被密码保护。 阅读全文
posted @ 2022-06-28 16:18 海阔凭鱼跃越 阅读(0) 评论(0) 推荐(0)
  2022年6月21日
摘要: 1.MapleCOMSPS_LRB_VSIDS 1 /cygdrive/d/studySAT2022_06/MapleCOMSPS_LRB_VSIDS_no_drup/MapleCOMSPS_LRB_VSIDS/simp/Main.cc:43: undefined reference to `Min 阅读全文
posted @ 2022-06-21 11:22 海阔凭鱼跃越 阅读(163) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 27 下一页