Next Article in Journal
Regional Instability in the Abundance of Open Stands in the Boreal Forest of Eastern Canada
Previous Article in Journal
Pattern and Drivers of White-Tailed Deer (Odocoileus virginianus) Herbivory on Tree Saplings across a Plateau Landscape
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Time Efficiency of Selected Types of Adjacency Constraints in Solving Unit Restriction Models

1
Department of Forest Management, Faculty of Forestry and Wood Sciences, CULS, Prague 165 21, Czech Republic
2
Warnell School of Forestry and Natural Resources, University of Georgia, Athens, GA 30602, USA
*
Author to whom correspondence should be addressed.
Forests 2016, 7(5), 102; https://doi.org/10.3390/f7050102
Submission received: 5 April 2016 / Revised: 29 April 2016 / Accepted: 2 May 2016 / Published: 11 May 2016

Abstract

:
Spatial restrictions of harvesting have been extensively studied due to a number of environmental, social and legal regulations. Many spatial restrictions are defined by adjacency constraints, for which a number of algorithms have been developed. Research into the unit restriction model (URM) using a branch and bound algorithm focused on decreasing the number of adjacency constraints in harvest scheduling models, since the early solvers have been limited by the number of constraints and integer decision variables. However, this approach can lead to a loss of efficiency in solving mixed integer models. Recent improvements in commercial solvers and personal computers have made the reduction of constraints less relevant, since many solvers now accept an unlimited number of constraints and decision variables. The aim of this paper was to compare the time efficiency of solving unit restriction harvest scheduling models with different types of adjacency constraints using a commercial solver. The presented results indicate that the type of adjacency constraints can have a significant effect on the solving time and therefore could be a crucial factor of the time required for developing forest plans. We note that pairwise adjacency constraints may be sufficient today for addressing unit restriction forest harvest scheduling problems.

1. Introduction

Mathematical programing methods such as linear or dynamic programing have been widely used for harvest scheduling since the 1970s [1]. A number of different scheduling models have been created since then. In the 1990s, the effective use of geographic information systems (GIS) [2] enabled forest managers and researchers to include spatial requirements in the scheduling process. Without tracking spatial detail, it would be impossible to fulfill certain environmental requirements because the spatial structure of forest ecosystems significantly affects ecological processes [3]. In addition, contemporary forest certification programs and wildlife habitat models allude to the spatial nature of forest activities. Therefore, forest plans may need to recognize when and where harvest activities are scheduled in order to meet the goals of a forest landowner and to suggest feasible sets of activities.
There are two widely known approaches to model the spatial harvest scheduling problem: area restrictions models (ARM) and unit restrictions models (URM) [4]. In contrast with ARM, when employing the URM approach, each potential harvest area is exactly predefined by the size of each management unit. In the ARM model, management units can be aggregated to form larger potential harvest areas. These types of restrictions on harvest unit configuration can lead to lower objective function values in some cases [5]. The ARM model is more flexible with regard to the timing and placement of harvests, and should theoretically produce forest plans with higher objective function values than when using the URM model. However, the ARM model is computationally difficult to use for forest management that is typical for Central Europe, which constrains not only the maximum area but also the maximum width and length of a harvest unit.
When incorporating spatial requirements into the harvest scheduling models, it is often necessary to develop algorithms for specifying adjacency constraints. The traditional algorithm for problems involving the URM model of adjacency consists of defining pairwise constraints for each harvest unit and for all adjacent units. However, this approach could be limited by a maximum possible number of constraints in commercial solving software [6]. For this reason, many researchers have tried to develop different techniques for the reduction of adjacency constraints number. A branch and bound algorithm is the most classical method of solving URM. There are two directions to reduce the size of URM with adjacency constraints. The first one is the reduction of the number of adjacency constraints, which can, however, lead to lower efficiency of a branch and bound algorithm [7]. The second one is to reformulate adjacency constraints to increase the efficiency of the branch and bound algorithm [8]. McDill and Braze [9] present five groups of adjacency constraints types that encompass 14 constraint types. Each of these types have different levels of reducing the number of constraints, which can lead to different levels of efficiency of the branch and bound algorithm.
Some authors compared the efficiency of different adjacency algorithms (see for example [10]). However, the efficiency of the algorithms is not the only crucial part of their practical utilization. There is a rapid improvement of commercial mixed integer and integer programming solvers, and hence, many solvers now accept an unlimited number of constraints [8]. Due to this, the structure of storing spatial data and creating the adjacency constraints can be the most limiting factor for practical use of decision support systems (DSS) today.
The spatial structure of forest stands or harvest units can be described using graph theory, which is applied in many fields of human activities [11,12,13]. A graph representing the adjacencies of stands or units is undirected, unweighted and can also be disconnected [13] depending on the real situation in a forest area. Although graphical representation by way of a set of vertices and edges is the most well known approach, it is not a suitable method for storing graph data in computers. For this purpose, the most common way of data storing is an adjacency matrix [11]. Another common way of data storing is an adjacency list [14]. These two graph representations have many differences that could affect the total computing time of spatially dependent forest DSSs.
The main difference between the data storing approaches is in the time of adding or deleting one edge from the vertex. In the case of the adjacency list, this time is equal to O ( k ) where k is the length of the list containing the successors of vertex i . In the case of the adjacency matrix, the time needed for adding or deleting one edge from the vertex is equal to O ( n ) where n is the number of vertices. This can be effective only for a very dense graph where the total number of edges m = Ω ( n 2 ) [14]. However, large numbers of adjacency relations are not very common in real forest structures [7].
The goal of this paper is to compare the time efficiency of employing the two concepts of adjacency representation, which differ in the structure of data storage and the algorithm suitable for creating constraints. The first concept is the development of conventional pairwise constraints from an adjacency list. The second concept is the development of an adjacency matrix using three analytical algorithms described by Yoshimoto and Brodie [6]. These algorithms are based on simple linear algebraic operations. The results of these comparisons should confirm or refute the following two assumptions for each selected type of adjacency constraints: (1) the number of harvest units affects the time needed to solve the model; and (2) the number of adjacent harvest units affects the time required to solve the model.

2. Materials and Methods

2.1. Model

A very simple harvest scheduling integer programing model was created for the purpose of the paper. The model is presented below (Equation (1–4)).
M a x i m i z e   n = 1 N p = 1 P v n p x n p
subject to:
p = 1 P x n p 1   n 1 , , I
x n p + x k p 1   n 1 , , N ,   k Ω n ,   p 1 , , P
M X A 1
x n p { 0 , 1 }
The objective function (1) maximizes the volume harvested from all harvest units n = 1 , , N and from all periods p = 1 , , P , while v n p parameter expresses the stand volume in m3. The first constraint (2) ensures that each unit is harvested only once during the planned horizon, and the second constraint (3a or 3b) is related to spatial restrictions of the problem. The set Ω n in inequality 3a includes all adjacent units to the unit n . The matrix A is the adjacency matrix defined by { a i j } , where a i j = 1 if unit i is adjacent to unit j , otherwise a i j = 0 ; X is a control vector of variables x n p , 1 is a ( N × 1 ) unit vector, and M is called a modified adjacency matrix defined by { m i j } where m i j = a i j if i j and m i j = A i 1 if i = j (see [6] for more details).
The last constraint (4) specifies what values the decision variables x n p can acquire. A value of 0 means the unit n is not harvested in period p and is  1 otherwise.
Using pairwise constraints does not require a special type of algorithm to define the equations. However, the original adjacency matrix of adjacency constraints (3b) can be simplified by any of the three different analytical algorithms proposed by [6]. Each is based on the symmetry of the adjacency matrix. The so-called triangular adjacency matrix (TAM) is created when the first algorithm is used. This algorithm is based on the fact that the original adjacency matrix is diagonally symmetric. The row adjacency matrix (RAM) is created using the second algorithm. Some rows in the original adjacency matrix are redundant and can be deleted. The last type of the modified adjacency matrix is the row triangular adjacency matrix (RTAM), a combination of TAM and RAM. The algorithms are specified for reduction the number of constraints. However, this can lead to lower efficiency of the branch and bound algorithm [7].
The example of an original adjacency matrix, simplified adjacency matrices of the mentioned algorithms and relevant modified adjacency matrices [6] are presented below (Equation (5–8)). The example is completely hypothetical.
Original and modified adjacency matrices without simplification A = [ 0   1   0   0   0   0   0 1   0   1   0   0   0   0 0   1   0   1   0   0   0 0   0   1   0   1   0   1 0   0   0   1   0   1   1   0   0   0   0   1   0   0   0   0   0   1   1   0   0 ] M X = [ 1   1   0   0   0   0   0 1   2   1   0   0   0   0 0   1   2   1   0   0   0 0   0   1   3   0   0   1 0   0   0   1   3   1   1   0   0   0   0   1   1   0   0   0   0   1   1   0   2 ] [ x 1 x 2 x 3 x 4 x 5 x 6 x 7 ] [ 1 2 2 3 3 1 2 ] (5)
Original and modified adjacency matrices simplified by TAM A = [ 0   0   0   0   0   0   0 1   0   0   0   0   0   0 0   1   0   0   0   0   0 0   0   1   0   0   0   0 0   0   0   1   0   0   0   0   0   0   0   1   0   0   0   0   0   1   1   0   0 ] M X = [ 0   0   0   0   0   0   0 1   1   0   0   0   0   0 0   1   1   0   0   0   0 0   0   1   1   0   0   0 0   0   0   1   1   0   0   0   0   0   0   1   1   0   0   0   0   1   1   0   2 ] [ x 1 x 2 x 3 x 4 x 5 x 6 x 7 ] [ 0 1 1 1 1 1 2 ] (6)
Original and modified adjacency matrices simplified by RAM A = [ 0   0   0   0   0   0   0 1   0   1   0   0   0   0 0   0   0   0   0   0   0 0   0   1   0   1   0   1 0   0   0   0   0   0   0   0   0   0   0   1   0   0   0   0   0   1   1   0   0 ] M X = [ 0   0   0   0   0   0   0 1   2   1   0   0   0   0 0   0   0   0   0   0   0 0   0   1   3   1   0   1 0   0   0   0   0   0   0   0   0   0   0   1   1   0   0   0   0   1   1   0   2 ] [ x 1 x 2 x 3 x 4 x 5 x 6 x 7 ] [ 0 2 0 3 0 1 2 ] (7)
Original and modified adjacency matrices simplified by RTAM A = [ 0   0   0   0   0   0   0 1   0   1   0   0   0   0 0   0   0   0   0   0   0 0   0   1   0   1   0   0 0   0   0   0   0   0   0   0   0   0   0   1   0   0   0   0   0   1   1   0   0 ] M X = [ 0   0   0   0   0   0   0 1   2   1   0   0   0   0 0   0   0   0   0   0   0 0   0   1   2   1   0   0 0   0   0   0   0   0   0   0   0   0   0   1   1   0   0   0   0   1   1   0   2 ] [ x 1 x 2 x 3 x 4 x 5 x 6 x 7 ] [ 0 2 0 2 0 1 2 ] (8)

2.2. Data

For the purpose of the paper, we consider that each harvest unit has the same stand volume in the first period. The growth multiplier of 0.05 was used for the increment in every next period. The total number of time periods in the planning horizon was 3.
Following the goal of the paper, a large number of spatial forest structures had to be used. The real spatial structures could not be used because of the input data unavailability. For this analysis, we created random adjacency matrices representing different spatial structures. The random process of generating the spatial forest structure is described in Figure 1.
The random process of generating the spatial forest structure was applied for different numbers of harvest units (N = 100 to 500) and different average number of adjacency units (J = 1 to 10). The process was repeated ten times for each combination. The 500 defined model instances were created this way. Therefore, we developed 500 random landscapes for each set of modeling assumptions. This enabled a determination of the dispersion of objective function values with respect to each combination of modeling assumptions.
Four types of adjacency constraints were generated from the adjacency matrices created using the four different approaches described above as follows: pairwise constraints and constraints from TAM, RAM and RTAM. The instances of the described model were calculated on a personal computer with Intel® Core™ (Santa Clara, CA, USA) processor with 3.40 GHz and 16.0 GB random-access memory, which represents common computer equipment available today. The Gurobi® version 6.0.5 (Houston, TX, USA) [15] optimization software was used with the default gap tolerance (0.01%). Two limits of solving time (60 s and 120 s) were tested. If these limits were reached, the solving process stopped. The algorithm for generating the spatial structures and for model development was programmed in the Java programming language.
The amount of time required for all model instances, the final gap tolerance for all model instances, and the number of instances solved within the time limit were measured. The total number of the resulting constraints was determined as well. The standard deviation and coefficient of variation for each common set of assumptions were calculated to understand how the solutions values might be dispersed.

3. Results

The final results of the analysis are presented in Table 1, Table 2, Table 3, Table 4, Table 5, Table 6, Table 7, Table 8, Table 9 and Table 10. The calculated average values of the solution time required, the final gap tolerance characteristics, and the number of solved instances in the case of the 60 s and 120 s solving time limit are presented in Table 1, Table 2, Table 3, Table 4 and Table 5 (100, 200, 300, 400 and 500 harvest units) and Table 6, Table 7, Table 8, Table 9 and Table 10 (100, 200, 300, 400 and 500 harvest units), respectively.
In Table 1, we see that nearly all (9 of 10) attempts to solve the problem using pairwise constraints were successful for all assumptions of the number of adjacent neighbors. This problem only involved 100 stands, yet several formulations using the TAM, RAM, and RTAM adjacency matrices were unable to be solved in 60 s. From Table 2, Table 3, Table 4 and Table 5, we see that the different constraint formulations prevent the problem described in this research from being solved within 60 s when the number of stands assumed increases. In this case, when the number of stands increased to 200, none of the formulations with 5 adjacent stands on average were able to be solved in 60 s. Table 3 suggests that a problem with 3 or more (on average) adjacency relationships associated with 300 stands is not solvable in 60 s using any of the methods employed in this research. Table 4, when 400 stands are modeled, suggests that only problems with 2.5 adjacent stands (on average) can be solved in 60 s. The results in Table 5 are similar, when 500 stands are modeled, yet the problems with pairwise constraints were the only ones somewhat consistently solved in 60 s. In this case, however, only 5 of 10 attempts were solved. In each case, the smallest optimality gap (on average) was observed when using the pairwise constraints.
In Table 6, we see that all 10 attempts to solve the problem using pairwise constraints were successful for all assumptions of the number of adjacent neighbors. This problem only involved 100 stands, yet several formulations using the TAM, RAM, and RTAM adjacency matrices were unable to be solved in 120 s. From Table 7 onward, we begin to see that the different constraint formulations prevent the problem described in this research from being solved within 120 s when the number of stands assumed increases. Here, when the number of stands increased to 200, none of the formulations with 5 adjacent stands on average were able to be solved in 120 s. In Table 8, one can see that the pairwise constraint formulation was able to solve the problem (1 of 10 times) in 120 s when 300 stands were modeled and the average number of adjacent stands was 3.5 or 4. The other constraint formulations seemed to require more than 120 s in these cases. In Table 9, one can see that the pairwise constraint formulation was the only one of the four tested that was able to solve the problem (3 of 10 times) in 120 s when 400 stands were modeled and the average number of adjacent stands was 3. Table 10 suggests that a problem with 3 or more (on average) adjacency relationships associated with 500 stands is not solvable in 120 s, using any of the methods employed in this research.
It is clear from the tables that the complexity of the model instances increases not only with the number of harvest units but also with the average number of the adjacent harvest units. This fact can be seen in the behavior of all three measured characteristics for all four different types of adjacency constraints. It can also be proclaimed that with the increasing complexity of the model instances, the solution time and the final gap tolerance (the lower the gap tolerance, the better the result) also increase, while the number of model instances solved under the time limit decreases.
The calculated standard deviations and coefficients of variation of solving time for all combinations are presented in Table 11 and Table 12. One can observe that the higher complexity of model instance is coupled with higher standard deviation and coefficient of variation of solving time. Unfortunately, the lower number of solved model instances in some cases may cause discredit of the calculated values. In addition, it is shown in previous tables that the chances to solve the various models in real time decrease with increases in the model complexity. The results are not surprising, since a time limit applied to more complex models does not allow the branch and bound algorithm to sufficiently search the solution space. Therefore, the solutions reported after 60 or 120 s are expectedly sub-optimal, leading to greater variation in the sample objective function values.
Only in the case of very simple spatial structures (where the average number of adjacent units ranges from 0.5 to 2.0 units), all four types of adjacency constraints had the same effect on the solving time, gap tolerance, and number of solved instances within the time limit (Table 1, Table 2, Table 3, Table 4, Table 5, Table 6, Table 7, Table 8, Table 9 and Table 10). These very simple spatial structures can represent forest management areas with very low density of mature forests stands.
The pairwise adjacency constraints were more successful in solving most instances than other types of adjacency constraints. Even in the cases when the average time of solving was greater, the final gap tolerance was lower or the number of solved instances within the time limit was higher. Even in spite of the really low number of constraints obtained by TAM, RAM and RTAM (Table 13), the pairwise constraints were more successful in solving these problems in a timely manner.

4. Discussion

Without adjacency restrictions represented by adjacency constraints in a harvest scheduling model, a forest manager cannot be sure that the results of such a model are feasible in real management situations. However, these constraints can dramatically complicate the process of developing a forest plan [10], especially in the case of small-scale unit restriction models. In our case, the maximum area of each harvest unit was not to exceed 2 hectares (yet could be 1 hectare in some countries), which represents a very common planning situation in Central Europe. In other areas of the world, this scale of problem could be similar to the arrangement and scheduling of group selection harvest patches, where the patches should not touch within a given time frame in order to maintain the patch size suggested in the silvicultural system [16]. In either case, the small-scale unit restriction problem is a microcosm of larger-scale adjacency issues that involve restricting the maximum final harvest size (e.g., 50 ha) within a given green-up period.
At the beginning of the computer-based spatial harvest scheduling in 1990’s, it was possible to solve only small scheduling problems (i.e., small number of decision variables and constraints) because of the limitations of personal computers and solvers. However, increasing computing speeds and improved commercial solvers enable us to solve larger and larger problems [8]. It is generally known that the power of computers has been growing exponentially, and solvers have also been dramatically improved. In connection with this, the use of forest harvest scheduling DSSs has also dramatically increased. For this reason, researchers should periodically re-analyze different practical and theoretical aspects of harvest scheduling models. This service to society allows knowledge of the capabilities of forest planning systems to grow and to become adapted within forest management organizations.
Few scientific papers have dealt with the effect of reducing the number of adjacency constraints by different methods (see for example [6,7,17]). The number of adjacency constraints can be significantly reduced as is confirmed and presented in this paper. This is especially true in the case of large problems with complex spatial structures. As the number of constraints is reduced within a complex planning problem, one would hope that the time required to solve the problem would also be reduced. We have confirmed this hypothesis as well for the problem instances that were examined in this work. Therefore, our contribution incrementally adds to the body of science associated with applied optimization in this respect.
One of the first papers dealing with measuring the efficiency of adjacency constraints was presented by Murray and Church [18]. They tested several different types of adjacency constraints including pairwise constraints and TAM constraints presented above. The results of their analyses showed that TAM had the lowest efficiency, which was also confirmed in this paper. Tóth et al. [19] explored strengthening procedures for improving adjacency formulations of the area restriction forest planning problem. These efforts underscore the need to expand science in this area through the development and analysis of new methods for addressing practical forest management problems. Our work complements and adds to the growing body of science, yet due to the various types of forest management problems encountered around the world, by no means represents the final word on the subject. As the expectations of society evolve, the decision space within which forest managers can operate changes. Therefore, we expect novel and creative methods for combinatorial problems will continue to be assessed in association with efforts aimed at sustainable forest management.
The solving time and the final gap tolerance were also analyzed by McDill and Braze [10]. The authors randomly generated hypothetical forests of four different age structures. They tested three types of adjacency constraints: pairwise constraints, Type I constraints (encompassing several methods leading to the same results and proposed by many authors) and NOAM constraints based on the adjacency matrix proposed by Murray and Church [20]. The authors achieved the best results with Type I constraints. This fact could not be confirmed or confuted by the results presented here, although the algorithm based on the adjacency matrix had longer solution time as was presented before in the Results section. This means that adjacency matrix algorithms do not have to be an optimal approach for defining the adjacency relationships. On the other hand, the authors used another solver (CPLEX® (Armonk, NY, USA)) and also a different type of computer, of which the latter is already outdated. It is questionable if the results would be the same with currently used computers and software.
The solving time of harvest scheduling models is dependent not only on the inherent spatial forest structure, but also on the number of planning periods, the length of each period, other types of constraints related to the planning problem (e.g., a type of harvest flow constraints), the computer employed, the software employed and its settings [21]. The input age structure can affect the model complexity [9]. The evaluation of the effects of all these aspects was not the aim of this study. We focused on the types of adjacency constraints, which are used in the DSS called Optimal [22,23]. Other mentioned aspects should be analyzed individually in more detail.
As we stated before, one aspect of different types of adjacency constraints that has not been studied yet, though it has an impact on real-life scheduling situations, is their consumption of computer random-access memory. The consumption of memory can limit using DSSs aimed at spatial harvest scheduling, for instance Optimal or Heureka [24]. In these cases, adjacency constraints can be created directly from a database, in which the spatial information is saved in the form of pairwise adjacency constraints. However, all spatial information must be uploaded to the computer memory at first, and kept in the memory during the algebraic process when using the presented analytical algorithms. Therefore, the amount of memory used to manage the data may take away memory available to a solver in developing a forest plan. This may have varying effects on the ability and time required to solve a problem, and likely depends on the data, computer, and software at the disposal of the forest planner.
Following the assumptions we stated in the Introduction, we can confirm that the number of harvest units affects the solving time of model instances, although the number of adjacent units has a greater effect. On the basis of the presented results, we can recommend using the pairwise type of adjacency constraints for solving unit restriction harvest scheduling models.

5. Conclusions

We presented an analysis of four different types of adjacency constraints used for solving unit restriction harvest scheduling models. The first type was a traditional type of pairwise constraints, while the other three types were adjacency constraints defined by three different analytical algorithms. These algorithms were developed to reduce the total number of adjacency constraints, which can be much greater in comparison to pairwise constraints. However, the reduction of constraints can decrease the efficiency of branch and bound based algorithms, regardless of the demand for the greater computer random-access memory consumption. As was shown, the reduction of constraints may no longer be needed, because today’s solvers are not limited by the number of constraints and the traditional pairwise adjacency constraints are more effective for solving spatial harvest scheduling models.

Acknowledgments

This research was supported by the project of the National Agency for Agriculture Research (No. QJ1320230) and the Internal Grant Agency of Faculty of Forestry and Wood Sciences, Czech University of Life Sciences in Prague (No. B07/15).

Author Contributions

Jan Kašpar, Róbert Marušák and Pete Bettinger conceived and designed the experiments. Jan Kašpar performed the experiments and analyzed the data.

Conflicts of Interest

The authors declare no conflict of interest. The founding sponsors had no role in the design of the study; in the collection, analyses, or interpretation of data; in the writing of the manuscript, and in the decision to publish the results.

Abbreviations

The following abbreviations are used in this manuscript:
URMUnit Restriction Models
GISGeographic Information System
TAMTriangular Adjacency Matrix
RAMRow Adjacency Matrix
RTAMRow Triangular Adjacency Matrix
NOAMNew Ordinary Adjacency Matrix
DSSDecision Support System

References

  1. Dykstra, D.P. Mathematical Programming for Natural Resource Management; McGraw-Hill Book Company Inc.: New York, NY, USA, 1984. [Google Scholar]
  2. Baskent, E.Z.; Keles, S. Spatial forest planning: A review. Ecol. Model 2005, 188, 145–173. [Google Scholar] [CrossRef]
  3. Kurtilla, M. The spatial structure of forests in the optimization calculations forest planning—A landscape ecological perspective. For. Ecol. Manag. 2001, 142, 129–142. [Google Scholar] [CrossRef]
  4. Murray, A.T. Spatial restrictions in harvest-scheduling. For. Sci. 1999, 45, 45–52. [Google Scholar]
  5. Jamnick, M.S.; Walters, K.R. Spatial and temporal allocation of stratum-based harvest schedules. Can. J. For. Res. 1993, 23, 402–413. [Google Scholar] [CrossRef]
  6. Yoshimoto, A.; Brodie, J.D. Comparative analysis of algorithms to generate adjacency constraints. Can. J. For. Res. 1994, 24, 1277–1288. [Google Scholar] [CrossRef]
  7. Torres-Rojo, J.M.; Brodie, J.D. Adjacency constraints in harvest scheduling: An aggregation heuristic. Can. J. For. Res. 1990, 20, 978–986. [Google Scholar] [CrossRef]
  8. Crowe, K.; Nelson, J.; Boyland, M. Solving the area-restricted harvest-scheduling model using the branch and bound algorithm. Can. J. For. Res. 2003, 33, 1804–1814. [Google Scholar] [CrossRef]
  9. McDill, M.E.; Braze, J. Comparing adjacency constraint formulations for randomly generated forest planning problems with four age-class distributions. For. Sci. 2000, 46, 423–436. [Google Scholar]
  10. McDill, M.E.; Braze, J. Using the branch and bound algorithm to solve forest planning problems with adjacency constraints. For. Sci. 2000, 47, 403–418. [Google Scholar]
  11. Bondy, J.A.; Murty, U.S.R. Graduate Texts in Mathematics; Springer-Verlag Heidelberg: New York, NY, USA, 2000. [Google Scholar]
  12. Diestel, R. Graph Theory, 3rd ed.; Springer-Verlag Heidelberg: New York, NY, USA, 2005. [Google Scholar]
  13. Benjamin, A.; Chartrand, G.; Zhang, P. The Fascinating World of Graph Theory; Princeton University Press: Princeton, NJ, USA, 2015. [Google Scholar]
  14. Mehlhorn, K.; Sanders, P. Algorithms and Data Structure—The Basic Toolbox; Springer-Verlag: Berlin/Heidelberg, Germany, 2008. [Google Scholar]
  15. Gurobi Optimizer Reference Manual 6.5. Available online: http://www.gurobi.com/documentation/6.5/refman/java_api_overview.html#sec:Java (accessed on 1 December 2015).
  16. Bettinger, P.; Johnson, D.L.; Johnson, K.N. Spatial forest plan development with ecological and economic goals. Ecol. Model 2003, 169, 215–236. [Google Scholar] [CrossRef]
  17. Hoganson, H.M.; Borges, J.G. Using dynamic programming and overlapping subproblems to address adjacency in large harvest scheduling problems. For. Sci. 1998, 44, 526–538. [Google Scholar]
  18. Murray, A.T.; Church, R.L. Measuring the efficacy of adjacency constraint structure in forest planning models. Can. J. For. Res. 1995, 25, 1416–1424. [Google Scholar] [CrossRef]
  19. Tóth, S.F.; McDill, M.E.; Könnyű, N.; George, S. A strengthening procedure for the path formulation of the area-based adjacency problem in harvest scheduling models. Math. Comput. For. Nat. Res. Sci. 2012, 4, 27–49. [Google Scholar]
  20. Murray, A.T.; Church, R.L. Constructing and selecting adjacency constraints. INFOR 1996, 34, 232–248. [Google Scholar]
  21. Snyder, S.; ReVelle, C. Dynamic selection of harvest units with adjacency restrictions: The SHARe model. For. Sci. 1997, 43, 213–222. [Google Scholar]
  22. Marušák, R.; Kašpar, J.; Vopěnka, P. Decision support system (DSS) optimal—A case study from the Czech Republic. Forests 2015, 6, 163–182. [Google Scholar] [CrossRef]
  23. Vopěnka, P.; Kašpar, J.; Marušák, R. GIS tool for optimization of forest harvest-scheduling. Comput. Electron. Agric. 2015, 113, 254–259. [Google Scholar] [CrossRef]
  24. Wikstrӧm, P.; Edenius, L.; Elfving, B.; Eriksson, L.O.; Lämås, T.; Sonesson, J.; Ӧhman, K.; Wallerman, J.; Waller, C.; Klintebäck, F. The heureka forestry decision support system: An overview. Math. Comput. For. Nat. Res. Sci. 2011, 3, 87–95. [Google Scholar]
Figure 1. The process of random generation of a spatial forest structure (int = integer number).
Figure 1. The process of random generation of a spatial forest structure (int = integer number).
Forests 07 00102 g001
Table 1. Solving time, gap tolerance and number of solved instances for 60 s time limit and 100 harvest units.
Table 1. Solving time, gap tolerance and number of solved instances for 60 s time limit and 100 harvest units.
Number of Harvest UnitsAverage Number of Adjacent Units60 s Time Limit
Average Time (s)Average Gap Tolerance (%)Number of Solved Instances
PairwiseTAMRAMRTAMPairwiseTAMRAMRTAMPairwiseTAMRAMRTAM
1000.50.000.000.000.000.000.000.000.0010101010
1.00.000.010.010.010.000.000.000.0010101010
1.50.000.010.010.020.000.000.000.0010101010
2.00.010.040.060.030.000.000.000.0010101010
2.50.060.090.110.090.000.000.000.0010101010
3.00.140.200.150.330.000.000.000.0010101010
3.50.480.780.550.790.000.000.000.0010101010
4.00.922.049.792.710.000.000.070.09101098
4.52.5111.989.6125.190.000.060.410.9410965
5.013.9217.6619.2941.310.311.741.311.739332
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.
Table 2. Solving time, gap tolerance and number of solved instances for 60 s time limit and 200 harvest units.
Table 2. Solving time, gap tolerance and number of solved instances for 60 s time limit and 200 harvest units.
Number of Harvest UnitsAverage Number of Adjacent Units60 s Time Limit
Average Time (s)Average Gap Tolerance (%)Number of Solved Instances
PairwiseTAMRAMRTAMPairwiseTAMRAMRTAMPairwiseTAMRAMRTAM
2000.50.010.000.000.000.000.000.000.0010101010
1.00.010.010.010.010.000.000.000.0010101010
1.50.010.040.040.030.000.000.000.0010101010
2.00.090.170.140.160.000.000.000.0010101010
2.50.360.620.871.990.000.000.000.0010101010
3.02.668.309.0819.710.000.000.070.001010710
3.523.7620.7835.3029.040.000.020.080.1710874
4.025.31-31.37-0.140.610.880.787010
4.544.56---0.622.542.562.445000
5.0----3.064.585.314.180000
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.
Table 3. Solving time, gap tolerance and number of solved instances for 60 s time limit and 300 harvest units.
Table 3. Solving time, gap tolerance and number of solved instances for 60 s time limit and 300 harvest units.
Number of Harvest UnitsAverage Number of Adjacent Units60 s Time Limit
Average Time (s)Average Gap Tolerance (%)Number of Solved Instances
PairwiseTAMRAMRTAMPairwiseTAMRAMRTAMPairwiseTAMRAMRTAM
3000.50.010.010.010.010.000.000.000.0010101010
1.00.010.010.010.010.000.000.000.0010101010
1.50.020.050.050.050.000.000.000.0010101010
2.00.210.320.490.350.000.000.000.0010101010
2.52.9515.159.738.110.000.000.010.001010910
3.033.7327.5828.0843.180.040.110.240.166311
3.5----0.220.380.600.440000
4.0----0.581.852.101.790000
4.5----2.133.003.732.990000
5.0----4.335.455.855.570000
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.
Table 4. Solving time, gap tolerance and number of solved instances for 60 s time limit and 400 harvest units.
Table 4. Solving time, gap tolerance and number of solved instances for 60 s time limit and 400 harvest units.
Number of Harvest UnitsAverage Number of Adjacent Units60 s Time Limit
Average Time (s)Average Gap Tolerance (%)Number of Solved Instances
PairwiseTAMRAMRTAMPairwiseTAMRAMRTAMPairwiseTAMRAMRTAM
4000.50.010.010.010.010.000.000.000.0010101010
1.00.010.020.020.020.000.000.000.0010101010
1.50.030.070.060.060.000.000.000.0010101010
2.00.280.721.350.580.000.000.000.0010101010
2.54.9329.7634.6620.880.000.020.070.019648
3.0----0.110.210.270.300000
3.5----0.101.280.861.250000
4.0----0.362.343.003.200000
4.5----1.175.114.804.700000
5.0----5.928.037.157.560000
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.
Table 5. Solving time, gap tolerance and number of solved instances for 60 s time limit and 500 harvest units.
Table 5. Solving time, gap tolerance and number of solved instances for 60 s time limit and 500 harvest units.
Number of Harvest UnitsAverage Number of Adjacent Units60 s Time limit
Average Time (s)Average Gap Tolerance (%)Number of Solved Instances
PairwiseTAMRAMRTAMPairwiseTAMRAMRTAMPairwiseTAMRAMRTAM
5000.50.010.010.010.010.000.000.000.0010101010
1.00.010.020.030.030.000.000.000.0010101010
1.50.030.060.110.060.000.000.000.0010101010
2.00.605.751.171.080.000.000.000.0010101010
2.518.638.20-43.810.020.080.110.115101
3.0----0.140.400.360.410000
3.5----0.361.791.232.040000
4.0----1.984.043.273.560000
4.5----4.236.215.085.160000
5.0----6.907.818.168.170000
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.
Table 6. Solving time, gap tolerance and number of solved instances for 120 s time limit and 100 harvest units.
Table 6. Solving time, gap tolerance and number of solved instances for 120 s time limit and 100 harvest units.
Number of Harvest UnitsAverage Number of Adjacent Units120 s Time Limit
Average Time (s)Average Gap Tolerance (%)Number of Solved Instances
PairwiseTAMRAMRTAMPairwiseTAMRAMRTAMPairwiseTAMRAMRTAM
1000.50.000.000.000.000.000.000.000.0010101010
1.00.000.010.010.010.000.000.000.0010101010
1.50.010.010.010.010.000.000.000.0010101010
2.00.020.050.040.050.000.000.000.0010101010
2.50.070.080.110.080.000.000.000.0010101010
3.00.140.270.290.160.000.000.000.0010101010
3.50.350.831.671.190.000.000.000.0010101010
4.00.7815.422.875.950.000.000.000.0010101010
4.53.4119.4825.4236.510.000.240.100.00109910
5.08.7843.2630.2667.500.000.371.031.3710853
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.
Table 7. Solving time, gap tolerance and number of solved instances for 120 s time limit and 200 harvest units.
Table 7. Solving time, gap tolerance and number of solved instances for 120 s time limit and 200 harvest units.
Number of Harvest UnitsAverage Number of Adjacent Units120 s Time Limit
Average Time (s)Average Gap Tolerance (%)Number of Solved Instances
PairwiseTAMRAMRTAMPairwiseTAMRAMRTAMPairwiseTAMRAMRTAM
2000.50.000.000.000.000.000.000.000.0010101010
1.00.000.010.010.010.000.000.000.0010101010
1.50.010.030.040.040.000.000.000.0010101010
2.00.090.110.200.110.000.000.000.0010101010
2.50.310.830.633.210.000.000.000.0010101010
3.02.499.078.4611.190.000.000.030.001010810
3.524.1727.8951.9738.590.000.080.140.1210756
4.034.9777.55--0.030.620.780.979200
4.549.31---0.512.152.712.646000
5.0----2.923.714.623.850000
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.
Table 8. Solving time, gap tolerance and number of solved instances for 120 s time limit and 300 harvest units.
Table 8. Solving time, gap tolerance and number of solved instances for 120 s time limit and 300 harvest units.
Number of Harvest UnitsAverage Number of Adjacent Units120 s Time Limit
Average Time (s)Average Gap Tolerance (%)Number of Solved Instances
PairwiseTAMRAMRTAMPairwiseTAMRAMRTAMPairwiseTAMRAMRTAM
3000.50.000.010.010.010.000.000.000.0010101010
1.00.010.010.020.010.000.000.000.0010101010
1.50.010.030.060.050.000.000.000.0010101010
2.00.140.300.550.350.000.000.000.0010101010
2.51.093.965.4811.290.000.000.010.01101099
3.030.50-42.0336.820.010.130.150.108222
3.571.49---0.150.450.390.431000
4.074.81---0.311.191.571.021000
4.5----1.403.023.473.150000
5.0----3.895.484.884.940000
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.
Table 9. Solving time, gap tolerance and number of solved instances for 120 s time limit and 400 harvest units.
Table 9. Solving time, gap tolerance and number of solved instances for 120 s time limit and 400 harvest units.
Number of Harvest UnitsAverage Number of Adjacent Units120 s Time Limit
Average Time (s)Average Gap Tolerance (%)Number of Solved Instances
PairwiseTAMRAMRTAMPairwiseTAMRAMRTAMPairwiseTAMRAMRTAM
4000.50.010.010.010.010.000.000.000.0010101010
1.00.010.020.020.020.000.000.000.0010101010
1.50.020.060.090.100.000.000.000.0010101010
2.00.370.790.920.950.000.000.000.0010101010
2.525.8839.8639.8946.280.000.010.020.059974
3.051.60---0.080.190.270.243000
3.5----0.340.530.680.630000
4.0----0.771.521.811.830000
4.5----2.334.214.144.180000
5.0----4.716.766.336.090000
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.
Table 10. Solving time, gap tolerance and number of solved instances for 120 s time limit and 500 harvest units.
Table 10. Solving time, gap tolerance and number of solved instances for 120 s time limit and 500 harvest units.
Number of Harvest UnitsAverage Number of Adjacent Units120 s Time Limit
Average Time (s)Average Gap Tolerance (%)Number of Solved Instances
PairwiseTAMRAMRTAMPairwiseTAMRAMRTAMPairwiseTAMRAMRTAM
5000.50.010.010.010.010.000.000.000.0010101010
1.00.010.030.030.030.000.000.000.0010101010
1.50.030.080.110.100.000.000.000.0010101010
2.00.650.952.471.760.000.000.000.0010101010
2.551.6475.6561.4532.580.030.000.050.003331
3.0----0.140.270.350.380000
3.5----0.380.881.180.920000
4.0----1.122.613.223.090000
4.5----3.835.084.765.240000
5.0----5.528.237.447.710000
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.
Table 11. Resulting standard deviation (SD) and coefficient of variation (CV) of solving time for 60 s time limit.
Table 11. Resulting standard deviation (SD) and coefficient of variation (CV) of solving time for 60 s time limit.
Num. of Harvest UnitsAverage Number of Adjacent Units60 s Time Limit
PairwiseTAMRAMRTAM
SDCVSDCVSDCVSDCV
1000.50.00122.710.00119.710.00123.290.00121.53
1.00.00128.670.00230.950.00122.970.00113.66
1.50.00237.790.00966.900.00431.750.00848.82
2.00.00539.490.02249.810.02136.740.01031.77
2.50.03558.220.04046.270.03733.790.02428.07
3.00.09163.440.11758.040.08958.090.432130.98
3.50.514106.270.76798.840.612112.060.971122.48
4.01.425155.341.57577.0417.356177.362.66698.53
4.51.91876.4917.611147.045.01052.1626.128103.72
5.012.08786.8518.046102.207.84140.66--
2000.50.00118.280.00125.300.00122.580.00119.64
1.00.00119.560.00110.200.00217.080.00112.66
1.50.00750.410.040109.160.03477.520.01756.61
2.00.05564.040.06134.960.04933.990.03823.81
2.50.17849.110.61498.660.57265.633.392170.35
3.03.374126.758.927107.626.95276.5418.38993.32
3.57.90933.297.49836.0919.08254.0622.97079.11
4.010.83242.80------
4.518.38441.26------
3000.50.00115.150.00125.580.00125.550.00117.82
1.00.0004.790.00214.340.00317.640.00212.94
1.50.00950.120.04182.300.01734.790.03870.28
2.00.08641.240.21968.380.32065.160.19956.49
2.54.472151.8318.135119.7116.912173.807.01286.47
3.022.72167.367.51527.25----
4000.50.0006.570.00118.250.00113.050.0006.48
1.00.0015.720.00211.780.00210.310.00212.05
1.50.02076.720.06284.900.02033.090.05280.99
2.00.26896.690.50369.641.11582.660.45177.39
2.53.48670.7115.03750.5319.58856.5110.61850.86
5000.50.00220.980.00114.600.00111.490.00115.86
1.00.00322.920.0028.800.00416.720.0029.53
1.50.01650.720.00916.460.06860.790.02843.19
2.00.37762.6713.444233.920.71661.130.57953.73
2.518.41398.81------
Note: If one could not achieve the results by any algorithm (pairwise, TAM, RAM, RTAM), it means all values were discredited. TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix; SD = standard deviation; CV = coefficient of variation.
Table 12. Resulting standard deviation (SD) and coefficient of variation (CV) of solving time for 120 s time limit.
Table 12. Resulting standard deviation (SD) and coefficient of variation (CV) of solving time for 120 s time limit.
Num. of Harvest UnitsAverage Number of Adjacent Units120 s Time Limit
PairwiseTAMRAMRTAM
SDCVSDCVSDCVSDCV
1000.50.00013.740.00122.690.00120.470.00117.91
1.00.0008.380.00118.300.00228.970.00114.64
1.50.00234.070.00218.730.00750.420.00645.25
2.00.01682.970.03263.000.03169.780.02651.48
2.50.04670.670.04554.520.03230.330.01721.70
3.00.04533.120.273102.550.405137.810.09661.43
3.50.19655.841.246149.452.391143.351.403117.55
4.00.868111.5320.973136.003.496121.949.187154.48
4.51.86354.5726.337135.1842.423121.6436.784100.76
5.05.63464.1427.49363.5557.09376.0044.42065.80
2000.50.00119.580.00123.360.00122.470.00120.98
1.00.0007.700.00221.360.00110.490.00540.46
1.50.00772.680.02789.440.03174.210.02769.58
2.00.08188.210.05449.040.13968.140.05648.62
2.50.10935.730.74790.110.57791.608.176255.08
3.01.71969.128.78496.8847.533562.069.55485.35
3.518.90378.2244.796160.5937.45272.0728.34973.47
4.034.58898.92------
4.56.55213.29------
3000.50.0007.020.00124.100.00112.280.00114.30
1.00.00230.640.00216.410.00214.510.00317.10
1.50.00541.890.01339.240.04675.310.02448.24
2.00.147105.690.12742.050.41775.400.21460.92
2.50.79272.527.864198.5736.789671.3935.097310.88
3.025.93785.0414.713-----
4000.50.00110.780.00117.720.00112.400.00110.95
1.00.00220.320.00315.010.00525.230.00314.73
1.50.01664.170.04978.610.07080.370.06060.40
2.00.30080.170.818102.941.014110.740.83688.30
2.536.264140.1344.675112.0819.49348.8721.05645.50
3.021.12940.95------
5000.50.0005.410.00217.680.00113.630.00110.55
1.00.0015.370.00625.520.00310.290.00623.11
1.50.01439.880.04760.350.08478.090.09492.46
2.00.37457.300.58461.752.621105.952.821160.71
2.546.61590.26--48.23578.50--
Note: If one could not achieve the results by any algorithm (pairwise, TAM, RAM, RTAM), it means all values were discredited. TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix; SD = standard deviation; CV = coefficient of variation.
Table 13. Resulting number of adjacency constraints obtained by different algorithms for different types of spatial forest structures.
Table 13. Resulting number of adjacency constraints obtained by different algorithms for different types of spatial forest structures.
Number of Harvest UnitsAverage Number of Adjacent UnitsPairwiseTAMRAMRTAM
1000.549211919
5.0496806464
2000.594413737
5.01012162130128
3000.5153665756
5.01484242194195
4000.5198857675
5.01981323256256
5000.52481089895
5.02476403323322
TAM = triangular adjacency matrix; RAM = row adjacency matrix; RTAM = row triangular adjacency matrix.

Share and Cite

MDPI and ACS Style

Kašpar, J.; Marušák, R.; Bettinger, P. Time Efficiency of Selected Types of Adjacency Constraints in Solving Unit Restriction Models. Forests 2016, 7, 102. https://doi.org/10.3390/f7050102

AMA Style

Kašpar J, Marušák R, Bettinger P. Time Efficiency of Selected Types of Adjacency Constraints in Solving Unit Restriction Models. Forests. 2016; 7(5):102. https://doi.org/10.3390/f7050102

Chicago/Turabian Style

Kašpar, Jan, Róbert Marušák, and Pete Bettinger. 2016. "Time Efficiency of Selected Types of Adjacency Constraints in Solving Unit Restriction Models" Forests 7, no. 5: 102. https://doi.org/10.3390/f7050102

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop