如何在IR中表示数学域?

时间:2015-06-01 13:33:28

标签: c++ math mathematical-morphology

我想从约束列表中定义一个表示数学域的对象,但我对如何做到这一点并不清楚。

例如,我从IR开始,我有以下约束:

  • x> 0
  • x不在] 3,5]
  • x不在[7,12 [

然后,我的域名是] 0,3] U] 5,7 [U [12,+ oo。

我怎样才能很好地将它存储在C ++结构中?你以前曾经这样做过吗?此外,我希望能够检查easilly域是否为空。

2 个答案:

答案 0 :(得分:1)

除非您想使用在演出中提到的“第三方”工具,否则您必须编写自己的Interval类。 为此,您可以执行以下操作:

class Interval{
  struct Range{
     bool leftInclusive, rightInclusive;
     double left, right;
     bool operator<(Range other){return left<other.left;}
  }
  std::Set<Range> trueRanges;
  void addTrueRange(Range r){
    //check for overlaps
    //merge if overlapping
    //otherwise add to trueRanges
  }
  bool trueAt(double at){
   //find the range with the highest left-bound lower than at
   auto candidate = truethRanges.upper_bound(at); 

   if(candidate == trueRanged.end()) return false; // no range found

   //on-point checking here
   if(at <= candidate->left) return false;
   if(at >= candidate->right) return false;
   return true;
 }
}

这里省略了点检查,因为你不能简单地说doubleOne == doubleTwo,因为这会导致误报。所以你必须说ABS(doubleOne-doubleTwo) < tinyValue

要查找重叠,您可以查看this

答案 1 :(得分:0)

回答我自己的问题。

实际上,我使用来自boost/numeric/interval的间隔列表来跟踪sbabbi的概念,代表间隔的结合。

以下是一个例子:

typedef boost::numeric::interval_lib::rounded_math<double> RoundedPolicy;
typedef boost::numeric::interval_lib::checking_base<double> CheckingPolicy;
typedef boost::numeric::interval_lib::policies<RoundedPolicy,CheckingPolicy> IntervalPolicies;
typedef boost::numeric::interval<double,IntervalPolicies> interval;

//...

bool is_interval_empty(const interval& inter)
{
  return boost::numeric::empty(inter);
}

void restrict(interval& domain, const interval& inter)
{
  for(std::list<interval>::iterator it = domain.begin(); it != domain.end(); ++it)
    *it = boost::numeric::intersect(*it, inter);
  domain.remove_if(is_interval_empty);
}

void restrict(interval& domain, const interval& inter1, const interval& inter2)
{
  for(std::list<interval>::iterator it = domain.begin(); it != domain.end(); ++it)
  {
    domain.push_front(boost::numeric::intersect(*it, inter1));
    *it = boost::numeric::intersect(*it, inter2);
  }
  domain.remove_if(is_interval_empty);
}

//...

std::list<interval> domain;
for(unsigned long int i = 0; i < constraints.size(); ++i)
{
  if(constraints[i].is_lower_bound())
  {
    interval restriction(constraints[i].get_lower_bound(), std::numeric_limits<double>::infinity());
    restrict(domain, restriction);
  }
  else if(constraints[i].is_upper_bound())
  {
    interval restriction(-std::numeric_limits<double>::infinity(), constraints[i].get_upper_bound());
    restrict(domain, restriction);
  }
  else if(constraints[i].is_forbidden_range())
  {
    interval restriction1(-std::numeric_limits<double>::infinity(), constraints[i].get_lower_bound());
    interval restriction2(constraints[i].get_upper_bound(), std::numeric_limits<double>::infinity());
    restrict(domain, restriction1, restriction2);
  }
}

if(domain.size() == 0)
  std::cout << "empty domain" << std::endl;
else
  std::cout << "the domain exists" << std::endl;