📄 defines.h
字号:
/********************************************************************************************MiraXT -- Copyright (c) 2007, Tobias Schubert, Matthew Lewis, Natalia Kalinnik, Bernd Becker Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all copies orsubstantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE ANDNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.********************************************************************************************/// Some definitions.#define ThreadKnowledgeSharing // Knowledge Sharing between the threads?#define PseudoRandom // With this option enabled, a few decision variables are selected randomly.#define FixedZeroPolarity // With this option enabled, the decision variables are always set to "0" first.#define PseudoRandomValue 16383 // Parameter for "PseudoRandom".#define maxWordLength 64 // Used in loader.cpp.#define maxLineLength 2048 // Used in loader.cpp.#define maxClauseLength 16384 // Used in loader.cpp.#define numBuckets 512 // Used in vsids.cpp for the modified VSIDS decision strategy.#define shiftAmount 14 // Used in vsids.cpp for the modified VSIDS decision strategy.#define clauseNumberPos 0 // Position of the unique clause number within the clause's data structure.#define clauseLengthPos 1 // Position of the clause length within the clause's data structure.#define clauseThreadIDPos 2 // Position of the ID of the thread that generated the corresponding clause.#define clauseStart 3 // Position within the clause's data structure where the list of literals start.#define maxClauseSize 10 // Used in various "thread" related functions.#define activityInc 0x00010000 // Used in various "thread" related functions. #define IQSize 8 // Used for "Implication Queue Sorting".long long maxTime = 4000000000ll; // Overall CPU limit: 4000 seconds.long long maxPreTime = 20000000ll; // CPU limit for preprocessing: 20 seconds.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -