R/axioms.r

Defines functions axioms

axioms <- function(.)
{
  data.frame(AC=AC, CH=CH, GCH=GCH)
}

consistency <- function(.)
{
  if (GCH)
  {
    if (!AC)
      stop("Axioms are inconsistent; GCH ==> AC")
    if (!CH)
      stop("Axioms are inconsistent; GCH ==> CH")
  }
  
  invisible()
}
wrathematics/tfca documentation built on May 4, 2019, 10:54 a.m.