logic_tools 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 050637aebd4a23cf2fad66977655693b4bfec213
4
- data.tar.gz: 633b3b494230e852f4bb4f5b41bf6cfc445de661
3
+ metadata.gz: e3959c85da2264b72f5ae3a4b0fe8eda6cfab768
4
+ data.tar.gz: 0424225bcee4edac9f7e161024b61c9427aa91a1
5
5
  SHA512:
6
- metadata.gz: a61b43345ddf05b11fbf9dd01a19bd4c8570e8d609e4a5d4da58a2bd786eb19c2ec028489cdaed9b4801f76681bb97e18c321d39e52dfd91463801324e9659d6
7
- data.tar.gz: 017c29e9181dc2421f4260a5852d515de011088a9e495e55f21c6d511246435460ee54ef1079a89350b1d654120e9f00fa5e3656046ba4c6f92b0421a389bcf1
6
+ metadata.gz: ba63032be6f4b07afadab832f410f4b365132ac89fd5f0e7e926b9413e7de3d7e6f96cca1a710b187e18c0599681ba1002a86c1dab2b8997b882f110c773a8a2
7
+ data.tar.gz: fb61f85742828cae87c0ac3ff377ffef9a51c0cb4a740f52bf6da16b0a73565f8505302799acddc5c024b5065c017b4340cedde8dba2917d74b3e72c61a492e6
data/README.md CHANGED
@@ -101,6 +101,6 @@ The gem is available as open source under the terms of the [MIT License](http://
101
101
 
102
102
 
103
103
  ## To do
104
- * Add a more efficient alternative command to simplify_qm, based on the Espresso algorithm for example.
104
+ * Update the code of simplify_qm so that it uses the optimized LogicTool::Cover class and minimal\_column\_covers methods.
105
105
 
106
106
 
@@ -1,3 +1,3 @@
1
1
  module LogicTools
2
- VERSION = "0.3.2"
2
+ VERSION = "0.3.3"
3
3
  end
data/logic_tools.gemspec CHANGED
@@ -13,9 +13,12 @@ Gem::Specification.new do |spec|
13
13
  spec.description = %Q{LogicTools is a set of command-line tools for processing logic expressions.
14
14
  The tools include:
15
15
  simplify_qm for simplifying a logic expression,
16
+ simplify_es for simplifying a logic expression much more quickly than simplify_qm,
16
17
  std_conj for computing the conjunctive normal form of a logic expression,
17
18
  std_dij for computing the disjunctive normal form a of logic expression,
18
- and truth_tbl for generating the truth table of a logic expression.}
19
+ truth_tbl for generating the truth table of a logic expression,
20
+ is_tautology for checking if a logic expression is a tautology or not,
21
+ and complement for computing the complement of a logic expression.}
19
22
  spec.homepage = "https://github.com/civol"
20
23
  spec.license = "MIT"
21
24
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logic_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lovic Gauthier
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-01-16 00:00:00.000000000 Z
11
+ date: 2017-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -67,10 +67,12 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  description: "LogicTools is a set of command-line tools for processing logic expressions.
70
- \nThe tools include: \nsimplify_qm for simplifying a logic expression, \nstd_conj
70
+ \nThe tools include: \nsimplify_qm for simplifying a logic expression, \nsimplify_es
71
+ for simplifying a logic expression much more quickly than simplify_qm, \nstd_conj
71
72
  for computing the conjunctive normal form of a logic expression, \nstd_dij for computing
72
- the disjunctive normal form a of logic expression, \nand truth_tbl for generating
73
- the truth table of a logic expression."
73
+ the disjunctive normal form a of logic expression, \ntruth_tbl for generating the
74
+ truth table of a logic expression,\nis_tautology for checking if a logic expression
75
+ is a tautology or not,\nand complement for computing the complement of a logic expression."
74
76
  email:
75
77
  - lovic@ariake-nct.ac.jp
76
78
  executables: