Sha256: 2dab2eda07dbaeb2e8eb3e031668fbed6ef98d789ab536d84234b105e172140e
Contents?: true
Size: 1.37 KB
Versions: 11
Compression:
Stored size: 1.37 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 = <<-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