上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页
  2023年5月3日
摘要: 涉及search.c、reduce.c、collect.c、clause.c等多个文件 //search.c主程序调用功能函数的流程框架 1 int 2 kissat_search (kissat * solver) 3 { 4 start_search (solver); 5 6 int res 阅读全文
posted @ 2023-05-03 14:50 海阔凭鱼跃越 阅读(54) 评论(0) 推荐(0)
摘要: 传播函数分布在propsearch.h、propsearch.c和proplit.c文件之中 propsearch.h #ifndef _propsearch_h_INCLUDED #define _propsearch_h_INCLUDED struct kissat; struct clause 阅读全文
posted @ 2023-05-03 14:19 海阔凭鱼跃越 阅读(87) 评论(0) 推荐(0)
摘要: 指针solver对应类型kissat在internal.h中定义 下面从使用的角度来了解solver个主要数据成员 assign.c中几个函数 static inline void kissat_assign (kissat * solver, #ifdef INLINE_ASSIGN value 阅读全文
posted @ 2023-05-03 13:20 海阔凭鱼跃越 阅读(124) 评论(0) 推荐(0)
  2023年4月27日
摘要: 1.构造观察元并加入观察序列 在internal.hpp中有以下构造函数并声明相关函数 // Operators on watches. // void init_watches (); void connect_watches (bool irredundant_only = false); vo 阅读全文
posted @ 2023-04-27 10:44 海阔凭鱼跃越 阅读(47) 评论(0) 推荐(0)
  2023年4月25日
摘要: 所在文件propagate.cpp 传播函数代码分析 1 static Clause decision_reason_clause; 2 static Clause * decision_reason = &decision_reason_clause; //注意此处声明了两个静态量 3 4 inl 阅读全文
posted @ 2023-04-25 18:37 海阔凭鱼跃越 阅读(48) 评论(0) 推荐(0)
  2023年4月23日
摘要: 1. 构建数据库 2.掌握基于机器学习的基本方案 3.搭建并使用机器学习的应用平台 1. 构建数据库 时间序列专门的数据库InfluxDB https://docs.influxdata.com/influxdb/v2.7/ 时间序列数据平台,开发人员可以在该平台上构建物联网、分析和云应用程序。 2 阅读全文
posted @ 2023-04-23 15:54 海阔凭鱼跃越 阅读(65) 评论(0) 推荐(0)
  2023年4月15日
摘要: 以下代码基于cadical-rel-1.5.3版本,来源于: Solver 在cadical.hpp文件中声明求解器类型。其中成员函数比较有趣的是: int val (int lit); // Line 57, 返回文字的值;assert(val(liter)),断言文字liter为非零,即是有效文 阅读全文
posted @ 2023-04-15 10:16 海阔凭鱼跃越 阅读(222) 评论(0) 推荐(0)
  2023年3月20日
摘要: Abstract Algebraic solving of polynomial systems and satisfiability of propositional logic formulas are not two completely separate research areas, as 阅读全文
posted @ 2023-03-20 10:15 海阔凭鱼跃越 阅读(231) 评论(0) 推荐(0)
  2023年2月10日
摘要: 1. Cadical 求解器propagate.cpp传播函数代码注释: We are using the address of 'decision_reason' as pseudo reason for decisions to distinguish assignment decisions 阅读全文
posted @ 2023-02-10 16:34 海阔凭鱼跃越 阅读(52) 评论(0) 推荐(0)
  2023年2月6日
摘要: Norbert Mantheynmanthey@conp-solutions.comDresden, Germany Proceedings of SAT Competition 2022: Solver and Benchmark Descriptions, volume B-2022-1 of 阅读全文
posted @ 2023-02-06 22:09 海阔凭鱼跃越 阅读(113) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页