Ejemplo n.º 1
0
        public PolyhedraEnvironment <Expression> Join(PolyhedraEnvironment <Expression> right)
        {
            PolyhedraEnvironment <Expression> result;

            if (AbstractDomainsHelper.TryTrivialJoin(this, right, out result))
            {
                return(result);
            }
            else
            {
                return(Factory(UnderlyingPolyhedra.Join(embedded, right.embedded), intv.Join(right.intv)));
            }
        }