REVIEW 5 major objections 6 minor 38 references
A Quantum Annealing Approach for Solving Optimal Feature Selection and Next Release Problems
T0 review · 5 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read The paper claims that quantum annealing, after recasting next-release and feature-selection problems as QUBO models, produces more non-dominated solutions than NSGA-II in most tested cases and does so in substantially less time.
desk verdict A genuine first application of quantum annealing to NRP and FSP with real D-Wave runs, but the headline comparison against NSGA-II is undermined by a self-constructed Pareto front and missing QUBO details. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central machinery is the QUBO reformulation plus a decomposition-and-composition loop. For MOQA, the multi-objective problem is converted to many single-objective QUBOs by random weights; the trick is that suboptimal samples from a given weighted QUBO are retained, since they can be non-dominated for the original problem, so sampling volume and weight diversity control Pareto coverage. For CQHA, the maximum energy impact (MEI) decomposer iteratively picks the variable with the largest coefficient, follows connected quadratic terms to grow a sub-QUBO up to a size that fits the annealer's qubit connectivity, and ranks sub-QUBOs by energy so low-impact ones can be dropped; a composer then overwrites the current solution's variables with annealed sub-solutions, and steepest descent polishes the result. The paper also reports that the annealer solves random QUBOs up to 150 variables, while 200-variable QUBOs fail to embed, which is what forces the decomposition strategy.
What would settle it
Re-run MOQA and CQHA on the paper's NRP and FSP instances with the QUBO penalty coefficients multiplied by 0.1 and by 10, keeping everything else fixed: if the set of feasible non-dominated solutions changes substantially with penalty scale, the reported speed advantage rests on an unverified modeling choice. A complementary check is to grant NSGA-II the same wall-clock time as the QA methods rather than a fixed generation count; the paper's efficiency claim would be falsified if NSGA-II then recovers at least as many non-dominated solutions.
Extended reading notes
Core claim
The paper's central claim is that quantum annealing can act as a practical, fast subroutine for two multi-objective search-based software engineering problems once they are encoded as quadratic unconstrained binary optimization (QUBO) models. MOQA handles small instances by drawing random weights, converting each weighted scalarization into a QUBO, sampling the annealer hundreds of times per weight, and keeping every sampled solution that is non-dominated in the original multi-objective sense. CQHA handles large instances by decomposing the QUBO with a maximum energy impact heuristic into sub-problems small enough to embed on current hardware, annealing each sub-problem, composing the sub-solutions, and applying steepest descent as a classical local search. On the benchmarks studied, the QA-based methods yield more non-dominated solutions than NSGA-II in most cases, with average runtime reductions of 30.8% on small cases and 94.1% on large cases, while the epsilon-constraint method still finds more Pareto solutions but becomes more than 100 times slower as instances grow.
Load-bearing premise
The load-bearing premise is that the penalty coefficients hidden inside the QUBO conversion are large enough that low-energy annealer samples are feasible, high-quality solutions of the original constrained problem, yet the manuscript does not display that conversion or the penalty magnitudes.
Editorial extensions
If this is right
- For large-scale NRP and FSP instances where epsilon-constraint cannot finish in a reasonable time (E-Shop exceeds 72 hours in the small-scale set), MOQA and CQHA provide feasible approximate solutions in seconds to minutes.
- CQHA finds thousands of non-dominated solutions on large FSP benchmarks like uClinux, whereas NSGA-II with 500,000 evaluations finds only dozens, so the QA-based pipeline can be used when a heuristic baseline collapses.
- Discarding up to 70% of the low-energy sub-QUBOs can make CQHA faster and sometimes increase its non-dominated count, although it worsens the spacing of the solution set, so rate is a practical tuning knob on current hardware.
- The annealer's embedding limit near 150-200 variables means the decomposition strategy, not the annealing time, is the current bottleneck for scaling QA-based SBSE solvers.
Reading between the lines
- If the penalty-coefficient assumption holds, the same random-weight aggregation plus annealed sampling recipe could be lifted to other binary multi-objective software engineering problems, such as test-case prioritization or product-line configuration, without redesigning the solver.
- Because CQHA's runtime falls as problem size grows from 100 to 1000 variables, most of its cost appears to be fixed decomposition and embedding overhead; that makes the speedup partly attributable to the decomposition scheme, so a classical simulated-annealing solver on the same sub-QUBOs would be a clean test of how much the quantum sampler itself contributes.
- The MEI decomposition is lossy, so replacing it with a partition that respects the constraint graph rather than raw energy coefficients is a natural next experiment that might improve the evenness (Spacing) of CQHA's solution sets while preserving speed.
- An equal-time comparison against NSGA-II, rather than the paper's fixed-generation settings, would separate the algorithmic advantage of QA-based search from the effect of evaluation budget.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes two quantum-annealing-based algorithms for the multi-objective Next Release Problem (NRP) and Feature Selection Problem (FSP): MOQA, which converts a weighted aggregation of the objectives into QUBO form and samples it on a quantum annealer, and CQHA, which decomposes large QUBOs via maximum energy impact (MEI), solves sub-QUBOs with QA, and applies steepest descent as a local search. The authors compare these methods with NSGA-II and an ILP epsilon-constraint method on standard NRP and FSP datasets, reporting execution times and quality indicators (IGD, HV, SP, and non-dominated counts). The central claim is that the QA-based methods produce more non-dominated solutions than NSGA-II while being substantially faster, and that they are the first QA-based approaches for these SBSE problems.
Significance. If established, this work would be a meaningful contribution to search-based software engineering: it offers a concrete pipeline for applying quantum annealing to two well-known multi-objective problems, uses a real D-Wave machine, and reports large wall-clock reductions over NSGA-II. The paper also has reproducible elements: open data and code repositories are named, and the runtime measurements are external rather than fitted to a model. These strengths are, however, offset by the absence of the promised QUBO derivation, an evaluation methodology in which the reference Pareto front is partly constructed by the methods being compared, and internal inconsistencies in the reported tables. The central claims are therefore promising but not yet convincingly supported.
major comments (5)
- [Contribution 1; Methods, Algorithms 1 and 2] The first contribution states that the authors provide the QUBO conversion of FSP and NRP constraints and its derivation, but the full text never displays the QUBO formulation, the penalty terms, or the magnitude of the penalty coefficients. Algorithms 1 and 2 invoke ModeltoQUBO(F', W, G) without specifying the resulting Hamiltonian, so a reader cannot verify that low-energy samples of the annealer correspond to feasible solutions of the original constrained problems. Every experimental table in the paper depends on this unverified modeling step, so the central algorithmic premise is currently unsupported.
- [Quality Indicators; Answer to RQ2 (Tables 3 and 4)] The approximate Pareto front is built from the union of the methods being compared, and in RQ2 that front is overwhelmingly composed of CQHA's own output: on classic-2, CQHA contributes 134.2 solutions while NSGA-II contributes 7.6. Consequently, CQHA's IGD=0.0 on classic-2 and its high NS counts are computed against a front that CQHA itself largely defines, making these metrics self-referential rather than independent evidence of solution quality. The paper should use a reference front that does not depend on the methods under evaluation, for example an exact epsilon-constraint front on small instances or a high-budget run of a third algorithm, or it should report pairwise dominance counts that do not rely on a union front.
- [Table 5 versus Tables 3 and 4] The 100% rate rows in Table 5 are internally inconsistent with the corresponding CQHA rows in Tables 3 and 4. For classic-2, Table 3 reports time 57.96 s, S=134.2, NS=134.2, IGD=0.0, and HV=0.50 for CQHA, while Table 5 reports the same time and S but NS=9.7, IGD=142.37, and HV=0.54. Similar discrepancies appear for classic-3, toybox, and uClinux. It appears that Table 5 computes metrics against a different reference front than Tables 3 and 4, but the paper does not explain this. The reader therefore cannot tell which numbers represent the headline CQHA performance, and the contradictions raise doubts about the reliability of the reported indicators.
- [Abstract and Table 4] The abstract claims without qualification that, compared with NSGA-II, the proposed methods 'deliver more non-dominated solutions.' This is contradicted by Table 4 on the toybox FSP dataset, where NSGA-II finds S=429.8 while CQHA finds S=375.0. The claim holds only for the NS metric, which is computed against a union front dominated by CQHA's output, and it does not hold for the raw number of non-dominated solutions. The claim needs to be qualified accordingly, or the analysis needs to aggregate results across datasets in a way that matches the actual raw counts.
- [Evaluation Setup; Results (Tables 1-5)] All reported quality and runtime metrics are averages without standard deviations or confidence intervals, even though RQ1 states that runs are repeated 30 times. Several comparisons are close enough that sampling variability could change the conclusion: for example, BerkeleyDB in Table 2 reports MOQA S=54.2 versus NSGA-II S=55.4, and RP in Table 1 reports MOQA time 0.64 s versus NSGA-II 0.68 s. The paper should report the distribution over repeated runs and use an appropriate statistical test to support the claimed superiority in solution count and runtime.
minor comments (6)
- [Throughout] There are numerous typographical and notation inconsistencies, such as 'T able' in table captions, 'Pproblems' in the Table 7 header, 'epsilon-constrain' versus 'epsilon-constraint', and 'inter-complexity' where 'time complexity' seems intended.
- [Algorithm 3] In Algorithm 3, line 15, 'num <- Size(SQ) * rate' is ambiguous because rate is a percentage and the result should be an integer; the paper should clarify how rounding is performed and how SelectMaxEnergySQ selects among sub-QUBOs when num is not integer.
- [Answer to RQ4 (Table 6)] The result that elapsed time decreases as problem size increases, for example uClinux dropping from 33.37 s at size 100 to 4.73 s at size 1000, is counterintuitive and needs a more detailed explanation than 'the decomposer proves time-consuming for small-scale problems.' As written, the observation appears to contradict the expectation that larger instances require more work.
- [Introduction; Abstract] The claim that this is the first application of QA to NRP and FSP should be checked against the recent literature on QUBO formulations for search-based software engineering; the reference list does not include any QA-for-SBSE work, leaving the novelty claim unverified.
- [Evaluation Setup; Code availability] The manuscript should state explicitly which experiments were run on real D-Wave hardware and which used classical simulation, since the code availability section refers both to a D-Wave-API-based solver and to a separate classical simulation repository.
- [Quality Indicators] The terms 'correct non-dominated solutions' in the definitions of S and NS are not defined; the paper should clarify whether feasibility with respect to the original constraints is verified and how dominated or infeasible solutions are excluded.
Circularity Check
RQ2's IGD/HV/∥NS∥ comparison is scored against an 'approximate Pareto front' that is the union of CQHA and NSGA-II outputs, so CQHA helps define the benchmark used to praise it; Table 4 shows NSGA-II actually outnumbers CQHA in raw non-dominated solutions on toybox.
-
self definitional
[Results, 'Quality Indicators' and 'Answer to RQ2' (Tables 3–4)]
"We first calculate the approximate Pareto front by the union of all methods, and then use it to guide the calculation of ∥NS∥, HV, IGD, and SP. ... We use the solution composition of CQHA and NSGA-II to approximate the Pareto front to calculate metrics such as IGD and HV, which is logical in verifying the solution performance of the two methods."
The reference front used to score each method is defined as the union of the outputs of the very methods being compared. For any CQHA solution that survives to the approximate front, its distance in IGD is zero by construction because that point lies in CQHA's own output; the more solutions CQHA contributes, the more zero-distance reference points it creates. The same self-membership enriches the front used for HV and ∥NS∥, so the RQ2 conclusion that 'CQHA outperforms NSGA-II' on IGD/HV and yields 'more non-dominated solutions' is not independent evidence but an artifact of defining the benchmark from the contestants' own solution sets.
full rationale
The derivation chain for the headline comparison is partially self-referential. In RQ1 the authors benchmark against the exact ε-constraint Pareto front, which is independent and appropriate. In RQ2, however, no exact front is available, and the paper explicitly constructs the reference front as the union of the two methods being compared. This makes IGD and HV partly tautological: a method's own solutions are always present in the reference set used to score it, so a method that contributes more solutions automatically creates more zero-distance reference points for its own IGD and enriches the front used for HV and ∥NS∥. The large-count advantage of CQHA in classic-2 (134.2 vs 7.6) is therefore not independent evidence of front quality. The same self-built front is also why the abstract's unconditional 'more non-dominated solutions' claim ignores Table 4, where NSGA-II's raw ∥S∥ is 429.8 vs CQHA's 375.0 on toybox. Runtime comparisons are wall-clock measurements and are not circular; the MEI citation to D-Wave and the authors' earlier NRP/FSP papers are ordinary references, not a load-bearing self-citation chain. The QUBO conversion is claimed but its derivation is not shown, which is a missing-support/verifiability issue, not circularity. On balance, the large-scale quality comparison reduces in part to the definition of the metric, so the paper is partially circular rather than fully independent.
Assumptions & free parameters
free parameters (4)
- rate (fraction of sub-QUBOs processed by QA in CQHA) =
100%
- maximum sub-QUBO size s in Decomposer =
not specified in paper; adjusted downward until hardware embedding succeeds
- annealing time per sample =
20 microseconds
- number of random weight vectors n and samples r =
n=10, r=500
assumptions (5)
- ad hoc to paper NRP and FSP constraints can be represented exactly by QUBO penalty terms with coefficients large enough that infeasible solutions never have lower energy than the true constrained optimum.
- domain assumption A random weighted sum of the objectives, with uniformly random weights, produces samples whose non-dominated subset approximates the Pareto front.
- domain assumption The MEI decomposition of a large QUBO into sub-QUBOs preserves enough of the original problem structure that composed solutions are good.
- domain assumption D-Wave Advantage sampling at 20 microseconds returns low-energy solutions often enough for the algorithm to find high-quality non-dominated sets.
- domain assumption Wall-clock time comparisons across Python with D-Wave API, Java jMetal, and CPLEX are fair measures of algorithm efficiency.
Cite this review
Pith. "Pith review of A Quantum Annealing Approach for Solving Optimal Feature Selection and Next Release Problems." pith.science (2026). https://pith.science/paper/UDVH2XLJ
@misc{pith2026250614129,
author = {Pith},
title = {Pith review of: A Quantum Annealing Approach for Solving Optimal Feature Selection and Next Release Problems},
year = {2026},
howpublished = {\url{https://pith.science/paper/UDVH2XLJ}},
note = {Machine review of arXiv:2506.14129}
}
abstract
Search-based software engineering (SBSE) addresses critical optimization challenges in software engineering, including the next release problem (NRP) and feature selection problem (FSP). While traditional heuristic approaches and integer linear programming (ILP) methods have demonstrated efficacy for small to medium-scale problems, their scalability to large-scale instances remains unknown. Here, we introduce quantum annealing (QA) as a subroutine to tackling multi-objective SBSE problems, leveraging the computational potential of quantum systems. We propose two QA-based algorithms tailored to different problem scales. For small-scale problems, we reformulate multi-objective optimization (MOO) as single-objective optimization (SOO) using penalty-based mappings for quantum processing. For large-scale problems, we employ a decomposition strategy guided by maximum energy impact (MEI), integrating QA with a steepest descent method to enhance local search efficiency. Applied to NRP and FSP, our approaches are benchmarked against the heuristic NSGA-II and the ILP-based $\epsilon$-constraint method. Experimental results reveal that while our methods produce fewer non-dominated solutions than $\epsilon$-constraint, they achieve significant reductions in execution time. Moreover, compared to NSGA-II, our methods deliver more non-dominated solutions with superior computational efficiency. These findings underscore the potential of QA in advancing scalable and efficient solutions for SBSE challenges.
Reference graph
Works this paper leans on
-
[1]
ACM Computing Surveys (CSUR)45(1), 1–61 (2012)
Harman, M., Mansouri, S.A., Zhang, Y.: Search-based software engineering: Trends, 18 techniques and applications. ACM Computing Surveys (CSUR)45(1), 1–61 (2012)
work page 2012
-
[2]
Optimization and Engineering 1, 171–188 (2000)
Messac, A., Puemi-Sukam, C., Melachrinoudis, E.: Aggregate objective func- tions and pareto frontiers: required relationships and practical implications. Optimization and Engineering 1, 171–188 (2000)
work page 2000
-
[3]
In: Proceedings of the 9th Annual Conference on Genetic and Evolutionary Computation, pp
Zhang, Y., Harman, M., Mansouri, S.A.: The multi-objective next release problem. In: Proceedings of the 9th Annual Conference on Genetic and Evolutionary Computation, pp. 1129–1137 (2007)
work page 2007
-
[4]
In: The 2nd International Conference on Software Engineering and Data Mining, pp
Jiang, H., Zhang, J., Xuan, J., Ren, Z., Hu, Y.: A hybrid aco algorithm for the next release problem. In: The 2nd International Conference on Software Engineering and Data Mining, pp. 166–171 (2010). IEEE
work page 2010
-
[5]
Hamdy, A., Mohamed, A.: Greedy binary particle swarm optimization for multi- objective constrained next release problem. Int. J. Mach. Learn. Comput 9(5), 561–568 (2019)
work page 2019
-
[6]
Alexandria Engineering Journal 61(9), 6991–7005 (2022)
Marghny, M., Zanaty, E.A., Dukhan, W.H., Reyad, O.: A hybrid multi-objective optimization algorithm for software requirement problem. Alexandria Engineering Journal 61(9), 6991–7005 (2022)
work page 2022
-
[7]
Information and Software Technology 65, 1–13 (2015)
Veerapen, N., Ochoa, G., Harman, M., Burke, E.K.: An integer linear programming approach to the single and bi-objective next release problem. Information and Software Technology 65, 1–13 (2015)
work page 2015
-
[8]
Information and Software Technology 147, 106825 (2022)
Dong, S., Xue, Y., Brinkkemper, S., Li, Y.-F.: Multi-objective integer programming approaches to next release problem—enhancing exact methods for finding whole pareto front. Information and Software Technology 147, 106825 (2022)
work page 2022
Show all 38 references
-
[9]
Journal of Systems and Software 84(12), 2208–2221 (2011)
Guo, J., White, J., Wang, G., Li, J., Wang, Y.: A genetic algorithm for optimized feature selection with resource constraints in software product lines. Journal of Systems and Software 84(12), 2208–2221 (2011)
2011
-
[10]
In: 2013 1st International Workshop on Combining Modelling and Search-Based Software Engineering (CMSBSE), pp
Sayyad, A.S., Ingram, J., Menzies, T., Ammar, H.: Optimum feature selection in software product lines: Let your model and values guide your search. In: 2013 1st International Workshop on Combining Modelling and Search-Based Software Engineering (CMSBSE), pp. 22–27 (2013). IEEE
2013
-
[11]
Applied Soft Computing 49, 1215–1231 (2016)
Xue, Y., Zhong, J., Tan, T.H., Liu, Y., Cai, W., Chen, M., Sun, J.: Ibed: Combining ibea and de for optimal feature selection in software product line engineering. Applied Soft Computing 49, 1215–1231 (2016)
2016
-
[12]
In: 2015 IEEE/ACM 37th IEEE International Conference on Software Engineering, vol
Henard, C., Papadakis, M., Harman, M., Le Traon, Y.: Combining multi-objective search and constraint solving for configuring large software product lines. In: 2015 IEEE/ACM 37th IEEE International Conference on Software Engineering, vol. 1, pp. 517–528 (2015). IEEE 19
2015
-
[13]
Software & Systems Modeling 18, 1447–1466 (2019)
Guo, J., Liang, J.H., Shi, K., Yang, D., Zhang, J., Czarnecki, K., Ganesh, V., Yu, H.: Smtibea: a hybrid multi-objective optimization algorithm for configuring large constrained software product lines. Software & Systems Modeling 18, 1447–1466 (2019)
2019
-
[14]
In: Proceedings of the 40th International Conference on Software Engineering
Xue, Y., Li, Y.-F.: Multi-objective integer programming approaches for solving optimal feature selection problem: A new perspective on multi-objective opti- mization problems in sbse. In: Proceedings of the 40th International Conference on Software Engineering. ICSE ’18, pp. 1...
2018
-
[15]
Engineering with Computers38(Suppl 3), 1845–1863 (2022)
Abdollahzadeh, B., Gharehchopogh, F.S.: A multi-objective optimization algorithm for feature selection problems. Engineering with Computers38(Suppl 3), 1845–1863 (2022)
2022
-
[16]
Industrial & Engineering Chemistry Research 56(2), 560–574 (2017)
Wang, Z., Rangaiah, G.P.: Application and analysis of methods for selecting an optimal solution from the pareto-optimal front obtained by multiobjective optimization. Industrial & Engineering Chemistry Research 56(2), 560–574 (2017)
2017
-
[17]
Journal of statistical physics 22, 563–591 (1980)
Benioff, P.: The computer as a physical system: A microscopic quantum mechanical hamiltonian model of computers as represented by turing machines. Journal of statistical physics 22, 563–591 (1980)
1980
-
[18]
In: Pro- ceedings of the Twenty-eighth Annual ACM Symposium on Theory of Computing, pp
Grover, L.K.: A fast quantum mechanical algorithm for database search. In: Pro- ceedings of the Twenty-eighth Annual ACM Symposium on Theory of Computing, pp. 212–219 (1996)
1996
-
[19]
Nature Physics, 1–7 (2025)
Vodeb, J., Desaules, J.-Y., Hallam, A., Rava, A., Humar, G., Willsch, D., Jin, F., Willsch, M., Michielsen, K., Papi´ c, Z.: Stirring the false vacuum via interacting quantized bubbles on a 5,564-qubit quantum annealer. Nature Physics, 1–7 (2025)
2025
-
[20]
Reviews of Modern Physics 80(3), 1061 (2008)
Das, A., Chakrabarti, B.K.: Colloquium: Quantum annealing and analog quantum computation. Reviews of Modern Physics 80(3), 1061 (2008)
2008
-
[21]
https://docs.dwavesys.com/docs/ latest/handbook decomposing.html
Inc., D.-W.S.: Energy-Impact Decomposing. https://docs.dwavesys.com/docs/ latest/handbook decomposing.html
-
[22]
European Journal of Operational Research 199(1), 25–35 (2009)
¨Ozlen, M., Azizo˘ glu, M.: Multi-objective integer programming: A general approach for generating all non-dominated solutions. European Journal of Operational Research 199(1), 25–35 (2009)
2009
-
[23]
Information Sciences 585, 441–453 (2022)
Deng, W., Zhang, X., Zhou, Y., Liu, Y., Zhou, X., Chen, H., Zhao, H.: An enhanced fast non-dominated solution sorting genetic algorithm for multi-objective problems. Information Sciences 585, 441–453 (2022)
2022
-
[24]
Applied Soft Computing, 110472 (2023)
Rahimi, I., Gandomi, A.H., Nikoo, M.R., Chen, F.: A comparative study on 20 evolutionary multi-objective algorithms for next release problem. Applied Soft Computing, 110472 (2023)
2023
-
[25]
https://arxiv.org/abs/2406.17248
Xu, X., Cui, J., Cui, Z., He, R., Li, Q., Li, X., Lin, Y., Liu, J., Liu, W., Lu, J., et al.: MindSpore Quantum: A User-Friendly, High-Performance, and AI-Compatible Quantum Computing Framework (2024). https://arxiv.org/abs/2406.17248
2024 arXiv
-
[26]
In: Search-Based Software Engineering: 6th International Symposium, SSBSE 2014, Fortaleza, Brazil, August 26-29, 2014
Karim, M.R., Ruhe, G.: Bi-objective genetic search for release planning in support of themes. In: Search-Based Software Engineering: 6th International Symposium, SSBSE 2014, Fortaleza, Brazil, August 26-29, 2014. Proceedings 6, pp. 123–137 (2014). Springer
2014
-
[27]
Information and Software Technology 87, 104–118 (2017)
Pitangueira, A.M., Tonella, P., Susi, A., Maciel, R.S.P., Barros, M.: Minimizing the stakeholder dissatisfaction risk in requirement selection for next release planning. Information and Software Technology 87, 104–118 (2017)
2017
-
[28]
ACM Transactions on Software Engineering and Methodology (TOSEM) 27(1), 1–32 (2018)
Zhang, Y., Harman, M., Ochoa, G., Ruhe, G., Brinkkemper, S.: An empirical study of meta-and hyper-heuristic search for multi-objective release planning. ACM Transactions on Software Engineering and Methodology (TOSEM) 27(1), 1–32 (2018)
2018
-
[29]
IEEE Transactions on Software Engineering 38(5), 1195–1212 (2012)
Xuan, J., Jiang, H., Ren, Z., Luo, Z.: Solving the large scale next release problem with a backbone-based multilevel algorithm. IEEE Transactions on Software Engineering 38(5), 1195–1212 (2012)
2012
-
[30]
In: Proceedings of the 24th ACM SIGPLAN Conference Companion on Object Oriented Programming Systems Languages and Applications, pp
Mendonca, M., Branco, M., Cowan, D.: Splot: software product lines online tools. In: Proceedings of the 24th ACM SIGPLAN Conference Companion on Object Oriented Programming Systems Languages and Applications, pp. 761–762 (2009)
2009
-
[31]
Generative Software Development Laboratory, University of Waterloo, Technical Report (2012)
Berger, T., She, S., Lotufo, R., Wasowski, A., Czarnecki, K.: Variability modeling in the systems software domain. Generative Software Development Laboratory, University of Waterloo, Technical Report (2012)
2012
-
[32]
In: 2013 35Th International Conference on Software Engineering (ICSE), pp
Sayyad, A.S., Menzies, T., Ammar, H.: On the value of user preferences in search- based software engineering: A case study in software product lines. In: 2013 35Th International Conference on Software Engineering (ICSE), pp. 492–501 (2013). IEEE
2013
-
[33]
In: Proceedings of the 2015 International Symposium on Software Testing and Analysis, pp
Tan, T.H., Xue, Y., Chen, M., Sun, J., Liu, Y., Dong, J.S.: Optimizing selection of competing features via feedback-directed evolutionary algorithms. In: Proceedings of the 2015 International Symposium on Software Testing and Analysis, pp. 246–256 (2015)
2015
-
[34]
1: User’s manual for cplex
Cplex, I.I.: V12. 1: User’s manual for cplex. International Business Machines Corporation 46(53), 157 (2009)
2009
-
[35]
European journal of operational research 292(2), 397–422 (2021)
Audet, C., Bigeon, J., Cartier, D., Le Digabel, S., Salomon, L.: Performance 21 indicators in multiobjective optimization. European journal of operational research 292(2), 397–422 (2021)
2021
-
[36]
In: Proceedings of the International Symposium on Combinatorial Search, vol
Tran, T., Do, M., Rieffel, E., Frank, J., Wang, Z., O’Gorman, B., Venturelli, D., Beck, J.: A hybrid quantum-classical approach to solving scheduling problems. In: Proceedings of the International Symposium on Combinatorial Search, vol. 7, pp. 98–106 (2016)
2016
-
[37]
Nature Reviews Physics, 1–18 (2024)
Abbas, A., Ambainis, A., Augustino, B., B¨ artschi, A., Buhrman, H., Coffrin, C., Cortiana, G., Dunjko, V., Egger, D.J., Elmegreen, B.G., et al.: Challenges and opportunities in quantum optimization. Nature Reviews Physics, 1–18 (2024)
2024
-
[38]
McGeoch, C., Farr´ e, P.: D-Wave Hybrid Solver Service: An Overview (2020). https://www.dwavesys.com/resources/white-paper/ the-d-wave-advantage-system-an-overview/ Declarations Funding This work is supported by the Innovation Program for Quantum Science and Technology (Grant ...
2020
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.