2 * This program is free software: you can redistribute it and/or modify
3 * it under the terms of the GNU Lesser General Public License as
4 * published by the Free Software Foundation, either version 3 of the
5 * License, or (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 * @file BoundedLatticePolytopeCounter.ih
19 * @author Jacques-Olivier Lachaud (\c jacques-olivier.lachaud@univ-savoie.fr )
20 * Laboratory of Mathematics (CNRS, UMR 5127), University of Savoie, France
24 * Implementation of inline methods defined in BoundedLatticePolytopeCounter.h
26 * This file is part of the DGtal library.
30//////////////////////////////////////////////////////////////////////////////
32//////////////////////////////////////////////////////////////////////////////
34///////////////////////////////////////////////////////////////////////////////
35// IMPLEMENTATION of inline methods.
36///////////////////////////////////////////////////////////////////////////////
38///////////////////////////////////////////////////////////////////////////////
39// ----------------------- Standard services ------------------------------
41//-----------------------------------------------------------------------------
42template <typename TSpace>
43DGtal::BoundedLatticePolytopeCounter<TSpace>::
44BoundedLatticePolytopeCounter
50//-----------------------------------------------------------------------------
51template <typename TSpace>
53DGtal::BoundedLatticePolytopeCounter<TSpace>::
55( const Polytope* ptrP )
58 if ( ptrP == nullptr ) return;
59 myLower = ptrP->getDomain().lowerBound();
60 myUpper = ptrP->getDomain().upperBound();
64//-----------------------------------------------------------------------------
65template <typename TSpace>
66typename DGtal::BoundedLatticePolytopeCounter<TSpace>::Interval
67DGtal::BoundedLatticePolytopeCounter<TSpace>::
68intersectionIntervalAlongAxis( Point p, Dimension a ) const
70 ASSERT( myPolytope != nullptr );
71 const Polytope& P = *myPolytope;
72 const InequalityMatrix& A = P.getA();
73 const InequalityVector& B = P.getB();
74 const std::vector<bool>& I = P.getI();
75 Integer x_min = myLower[ a ];
76 Integer x_max = myUpper[ a ]+1;
78 const Integer x_a = x_min;
81 for ( Dimension k = 0; k < A.size(); k++ )
83 const Integer c = A[ k ].dot( p );
84 const Integer n = A[ k ][ a ];
85 const Integer b = B[ k ];
87 { // constraint is // to the specified axis.
88 empty = ! ( I[ k ] ? ( c <= b ) : c < b );
93 if ( d < 0 ) empty = true;
96 x = I[ k ] ? ( d / n + 1 ) : ( (d+n-1) / n ) ;
97 x_max = std::min( x_max, x_a + x );
105 x = I[ k ] ? ( (d-n-1) / -n ) : ( d / -n + 1 );
106 x_min = std::max( x_min, x_a + x );
108 // otherwise the constraint is true
110 if ( empty || ( x_max <= x_min ) ) return Interval( 0, 0 );
112 return Interval( x_min, x_max );
115//-----------------------------------------------------------------------------
116template <typename TSpace>
117typename DGtal::BoundedLatticePolytopeCounter<TSpace>::Interval
118DGtal::BoundedLatticePolytopeCounter<TSpace>::
119interiorIntersectionIntervalAlongAxis( Point p, Dimension a ) const
121 ASSERT( myPolytope != nullptr );
122 const Polytope& P = *myPolytope;
123 const InequalityMatrix& A = P.getA();
124 const InequalityVector& B = P.getB();
125 Integer x_min = myLower[ a ];
126 Integer x_max = myUpper[ a ]+1;
128 const Integer x_a = x_min;
131 // We must take into account also bounding box constraints for interior points.
132 for ( Dimension k = 0; k < A.size(); k++ )
134 const Integer c = A[ k ].dot( p );
135 const Integer n = A[ k ][ a ];
136 const Integer b = B[ k ];
138 { // constraint is // to the specified axis.
144 if ( d < 0 ) empty = true;
148 x_max = std::min( x_max, x_a + x );
157 x_min = std::max( x_min, x_a + x );
159 // otherwise the constraint is true
161 if ( empty || ( x_max <= x_min ) ) return Interval( 0, 0 );
163 return Interval( x_min, x_max );
166//-----------------------------------------------------------------------------
167template <typename TSpace>
168typename DGtal::BoundedLatticePolytopeCounter<TSpace>::Integer
169DGtal::BoundedLatticePolytopeCounter<TSpace>::
170countAlongAxis( Dimension a ) const
172 ASSERT( myPolytope != nullptr );
180 auto I = intersectionIntervalAlongAxis( p, a );
181 nb += I.second - I.first;
186//-----------------------------------------------------------------------------
187template <typename TSpace>
188typename DGtal::BoundedLatticePolytopeCounter<TSpace>::Integer
189DGtal::BoundedLatticePolytopeCounter<TSpace>::
190countInteriorAlongAxis( Dimension a ) const
192 ASSERT( myPolytope != nullptr );
200 auto I = interiorIntersectionIntervalAlongAxis( p, a );
201 nb += I.second - I.first;
206//-----------------------------------------------------------------------------
207template <typename TSpace>
209DGtal::BoundedLatticePolytopeCounter<TSpace>::
210getPointsAlongAxis( PointRange& pts, Dimension a ) const
212 ASSERT( myPolytope != nullptr );
219 auto I = intersectionIntervalAlongAxis( p, a );
221 for ( Integer x = I.first; x != I.second; x++ )
229//-----------------------------------------------------------------------------
230template <typename TSpace>
232DGtal::BoundedLatticePolytopeCounter<TSpace>::
233getInteriorPointsAlongAxis( PointRange& pts, Dimension a ) const
235 ASSERT( myPolytope != nullptr );
240 //Integer nb = 0; not used
243 auto I = interiorIntersectionIntervalAlongAxis( p, a );
245 for ( Integer x = I.first; x != I.second; x++ )
254//-----------------------------------------------------------------------------
255template <typename TSpace>
256typename DGtal::BoundedLatticePolytopeCounter<TSpace>::LatticeSetByInterval
257DGtal::BoundedLatticePolytopeCounter<TSpace>::
258getLatticeSet( Dimension a ) const
260 ASSERT( myPolytope != nullptr );
266 LatticeSetByInterval L;
269 auto I = intersectionIntervalAlongAxis( p, a );
270 if ( I.second > I.first )
271 L[ p ] = Interval( I.first, I.second - 1 );
276//-----------------------------------------------------------------------------
277template <typename TSpace>
278typename DGtal::BoundedLatticePolytopeCounter<TSpace>::LatticeSetByInterval
279DGtal::BoundedLatticePolytopeCounter<TSpace>::
280getLatticeCells( Dimension a ) const
282 ASSERT( myPolytope != nullptr );
288 LatticeSetByInterval L; //< stores the intersected cells
289 const Point One = Point::diagonal( 1 );
293 q = 2*p - One; q[ a ] = 0;
294 const auto I = intersectionIntervalAlongAxis( p, a );
295 const auto n = I.second - I.first;
298 // Now the second bound is included
299 L[ q ] = Interval( 2 * I.first - 1, 2 * I.second - 3 );
302 // It remains to compute all the k-cells, 0 <= k < d, intersected by Cvxh( Z )
303 for ( Dimension k = 0; k < dimension; k++ )
305 if ( k == a ) continue;
306 std::vector< Point > q_computed;
307 std::vector< Interval > I_computed;
308 for ( const auto& value : L )
310 Point p = value.first;
311 Interval I = value.second;
312 Point r = p; r[ k ] += 2;
313 const auto it = L.find( r );
314 if ( it == L.end() ) continue; // neighbor is empty
315 // Otherwise compute common part.
316 Interval J = it->second;
317 auto f = std::max( I.first, J.first );
318 auto s = std::min( I.second, J.second );
321 Point qq = p; qq[ k ] += 1;
322 q_computed.push_back( qq );
323 I_computed.push_back( Interval( f, s ) );
326 // Add new columns to map Point -> column
327 for ( typename Point::Index i = 0; i < q_computed.size(); ++i )
329 L[ q_computed[ i ] ] = I_computed[ i ];
335//-----------------------------------------------------------------------------
336template <typename TSpace>
338DGtal::BoundedLatticePolytopeCounter<TSpace>::
341 ASSERT( myPolytope != nullptr );
343 auto b_size = myUpper[ 0 ] - myLower[ 0 ];
344 for ( Dimension a = 1; a < dimension; a++ )
346 const auto a_size = myUpper[ a ] - myLower[ a ];
347 if ( b_size < a_size ) { b = a; b_size = a_size; }
354///////////////////////////////////////////////////////////////////////////////