上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 27 下一页
  2020年7月31日
摘要: 说明: (1)file.hpp中包含了相关的输入输出函数; (2)File类型内部有一个Internal指针,该指针用于衔接; Internal * internal; (3)可以接受读取各种压缩个格式的cnf输入文件 (4)打开文件函数open有两个,关闭文件函数close只有一个; (5) fi 阅读全文
posted @ 2020-07-31 16:51 海阔凭鱼跃越 阅读(202) 评论(0) 推荐(0)
  2020年7月30日
摘要: PauSatBenjamin Kaiser and Marc HartungZuse Institute BerlinBerlin, Germany{kaiser,hartung}@zib.de 译文:通过引入额外的赋值过程,实现了一种结合CDCL求解和SLS求解器特性的方法 关键的知识点:(1)变 阅读全文
posted @ 2020-07-30 22:35 海阔凭鱼跃越 阅读(331) 评论(0) 推荐(0)
摘要: collect.cpp 有关子句满足性判断、在watches中位置调整、是否可以撤销、撤销空间前copy垃圾收集器、释放空间等 包括以下internal类型的成员函数: 1 int Internal::clause_contains_fixed_literal (Clause * c); 2 voi 阅读全文
posted @ 2020-07-30 10:31 海阔凭鱼跃越 阅读(119) 评论(0) 推荐(0)
  2020年7月29日
摘要: clause.hpp clause.cpp clause.hpp 声明了常用类型的别名: /* */ typedef int * literal_iterator;typedef const int * const_literal_iterator; /* */ 定义结构类型Clause、claus 阅读全文
posted @ 2020-07-29 20:16 海阔凭鱼跃越 阅读(198) 评论(0) 推荐(0)
  2020年7月28日
摘要: stats.hpp定义了结构体类型Stats——通过这个定义可以看到各种参数的使用情况 stats.cpp给出了Stats的部分实现和其它类型定义的有关stats的函数: void Stats::print (Internal * internal) void Internal::print_res 阅读全文
posted @ 2020-07-28 07:15 海阔凭鱼跃越 阅读(172) 评论(0) 推荐(0)
  2020年7月26日
摘要: 外部和内部的关系:外部定义函数的文件都有#include “internal.hpp”头文件 restore.cpp文件中定义了以下外部文件 void External::restore_clause ( const vector<int>::const_iterator & begin, cons 阅读全文
posted @ 2020-07-26 14:26 海阔凭鱼跃越 阅读(197) 评论(0) 推荐(0)
摘要: restart.cpp定义了internal类型的几个成员函数: bool Internal::stabilizing () bool Internal::restarting () int Internal::reuse_trail () void Internal::restart () 1 # 阅读全文
posted @ 2020-07-26 13:59 海阔凭鱼跃越 阅读(184) 评论(0) 推荐(0)
  2020年7月25日
摘要: 学习掌握两个文件arena.hpp和arena.cpp arena.hpp文件内容 #ifndef _arena_hpp_INCLUDED#define _arena_hpp_INCLUDED namespace CaDiCaL { /* This memory allocation arena p 阅读全文
posted @ 2020-07-25 23:30 海阔凭鱼跃越 阅读(195) 评论(0) 推荐(0)
摘要: Weaknesses of CDCL SolversArmin BiereJohannes Kepler UniversityLinz, Austria 讲座的时间、地点:The Fields Institute, Toronto, Canada Tuesday, August 16, 2016 A 阅读全文
posted @ 2020-07-25 19:06 海阔凭鱼跃越 阅读(413) 评论(0) 推荐(0)
  2020年7月24日
摘要: Unit Clause Small Clause Current Partial Assignment Clause Database Clause Sharing 对并行求解的理解:并行主要采用组合投资方式或分而治之理论策略。 (1)对已分治策略详见Non-Portfolio approaches 阅读全文
posted @ 2020-07-24 10:27 海阔凭鱼跃越 阅读(374) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 27 下一页