Sha256: 113e519d728ca41be29f21731cf30274c0619bfdd8d89c769d684915df6e1415
Contents?: true
Size: 1.37 KB
Versions: 11
Compression:
Stored size: 1.37 KB
Contents
require_relative '../../version1_0' require_relative '../../relationship' module BELParser module Language module Version1_0 module Relationships # CausesNoChange: +A causesNoChange B+ - For terms A and B, # +A causesNoChange B+ indicates that B was observed not to # change in response to changes in A. Statements using this # relationship correspond to cases where explicit measurement # of B demonstrates lack of significant change, not for cases # where the state of B is unknown. class CausesNoChange extend Relationship SHORT = :causesNoChange LONG = :causesNoChange DESCRIPTION = <<-DOC CausesNoChange: +A causesNoChange B+ - For terms A and B, +A causesNoChange B+ indicates that B was observed not to change in response to changes in A. Statements using this relationship correspond to cases where explicit measurement of B demonstrates lack of significant change, not for cases where the state of B is unknown. DOC def self.short SHORT end def self.long LONG end def self.description DESCRIPTION end def self.causal? true end def self.directed? true end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems