Sha256: c5fdb8aa6633a74a25bd185ebcd6fc1d33c1180115cb2afaf4709d943a15c657
Contents?: true
Size: 1.4 KB
Versions: 104
Compression:
Stored size: 1.4 KB
Contents
require_relative '../../version2_0' require_relative '../../relationship' module BELParser module Language module Version2_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 = ' +A causesNoChange B+ - For terms A and B, +A ausesNoChange B+ indicates that B was observed not o change in response to changes in A. Statements sing this relationship correspond to cases where xplicit measurement of B demonstrates lack of ignificant change, not for cases where the state f B is unknown.'.freeze 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
104 entries across 104 versions & 1 rubygems