FormalLanguageConstrainedPathQuerying / CFPQ_Data

Graphs and grammars for Context-Free Path Querying algorithms evaluation.
https://formallanguageconstrainedpathquerying.github.io/CFPQ_Data/
Other
10 stars 15 forks source link

RSM deprecation #62

Closed vadyushkins closed 2 years ago

vadyushkins commented 3 years ago

Since RSA was added to the pyformlang, RSM support is discontinued and replaced with functions based on RSA. The functions for working with the RSM will be replaced by the corresponding functions for working with the RSA in cfpq_data 2.0.0:

rsm_from_cfg() -> rsa_from_cfg()
rsm_from_cnf() -> rsa_from_cnf()
rsm_from_text() -> rsa_from_text()
rsm_to_text() -> rsa_to_text()
rsm_from_txt() -> rsa_from_txt()
rsm_to_txt() -> rsa_to_txt()
codecov[bot] commented 3 years ago

Codecov Report

Merging #62 (1cc0941) into master (72befcc) will not change coverage. The diff coverage is 100.00%.

Impacted file tree graph

@@            Coverage Diff             @@
##            master       #62    +/-   ##
==========================================
  Coverage   100.00%   100.00%            
==========================================
  Files           39        41     +2     
  Lines          492       600   +108     
==========================================
+ Hits           492       600   +108     
Impacted Files Coverage Δ
...data/graphs/generators/labeled_scale_free_graph.py 100.00% <ø> (ø)
cfpq_data/__init__.py 100.00% <100.00%> (ø)
cfpq_data/grammars/converters/__init__.py 100.00% <100.00%> (ø)
cfpq_data/grammars/converters/cfg.py 100.00% <100.00%> (ø)
cfpq_data/grammars/converters/cnf.py 100.00% <100.00%> (ø)
cfpq_data/grammars/converters/rsa.py 100.00% <100.00%> (ø)
cfpq_data/grammars/converters/rsm.py 100.00% <100.00%> (ø)
cfpq_data/grammars/readwrite/__init__.py 100.00% <100.00%> (ø)
cfpq_data/grammars/readwrite/rsa.py 100.00% <100.00%> (ø)
cfpq_data/grammars/readwrite/rsm.py 100.00% <100.00%> (ø)
... and 3 more

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 72befcc...1cc0941. Read the comment docs.

vadyushkins commented 2 years ago

Unnecessary because of # 66