Papers
Topics
Authors
Recent
Search
2000 character limit reached

Intensified Morris-Mitchell Criterion

Updated 31 December 2025
  • Intensified Morris-Mitchell Criterion is a size-invariant metric that normalizes pairwise distances to allow fair comparisons across different design sizes.
  • It preserves the lexicographic max–min emphasis of the original metric while enabling continuous monitoring and improvement of space-filling designs.
  • Its efficient algorithmic implementation, as featured in packages like spotoptim, supports both batch and sequential updates in multi-objective optimization.

The intensified Morris–Mitchell criterion is a size-invariant generalization of the original Morris–Mitchell space-filling metric, designed to provide a standardized and scalable means of quantifying design coverage in multi-dimensional input spaces. By introducing a normalization over the number of pairwise distances, this criterion enables direct and fair comparison of experimental designs irrespective of the number of samples, a feature indispensable in adaptive or incremental optimization workflows. It preserves the lexicographic max–min emphasis of the original metric while ensuring its scale remains stable as the design size changes, thus serving as a robust tool for monitoring and guiding space-filling improvements in sequential and batch design construction (Bartz-Beielstein et al., 26 Dec 2025).

1. Mathematical Formulation and Properties

The classical Morris–Mitchell criterion for a design X={x1,…,xn}⊂RkX = \{x_1,…,x_n\} \subset \mathbb{R}^k is defined as

Φq(X)=(∑i=1mJi di−q)1/q\Phi_q(X) = \left( \sum_{i=1}^{m} J_i\, d_i^{-q} \right)^{1/q}

where did_i are the distinct pairwise Minkowski distances ∥xj−xk∥p\|x_j - x_k\|_p sorted in ascending order, JiJ_i is the multiplicity of each distance did_i, and q>0q > 0 is an exponent that intensifies the max–min emphasis as q→∞q \to \infty.

The intensified (size-invariant) Morris–Mitchell criterion is: Φq∗(X)=(1M∑i=1mJi di−q)1/q\Phi^*_q(X) = \left( \frac{1}{M} \sum_{i=1}^{m} J_i\, d_i^{-q} \right)^{1/q} with M=n(n−1)/2M = n(n-1)/2 being the number of unordered pairs. Equivalently,

Φq∗(X)=Φq(X)M1/q\Phi^*_q(X) = \frac{\Phi_q(X)}{M^{1/q}}

This intensive normalization yields a criterion that remains on a consistent scale, regardless of the number of design points.

Formula Description Scale Dependence
Φq(X)\Phi_q(X) Standard Morris–Mitchell criterion Grows with nn
Φq∗(X)\Phi^*_q(X) Intensive, size-invariant criterion Stable across nn

2. Algorithmic Implementation

Batch and sequential calculation of Φq∗(X)\Phi^*_q(X) are straightforward. The batch pseudocode involves:

  1. Compute all pairwise distances and sort them.
  2. Group unique distances into d[1…m]d[1…m] each with multiplicity J[i]J[i].
  3. Calculate Φq(X)\Phi_q(X) by summing Jidi−qJ_i d_i^{-q}.
  4. Normalize by MM, yielding Φq∗(X)\Phi^*_q(X).

Efficient sequential updates allow rapid computation when adding points:

  • Compute new distances from xnewx_\mathrm{new} to all existing points.
  • Update multiplicities JJ and possibly create new distinct distances.
  • Increment MM by nn.
  • Update the summed value and recompute Φq(X)\Phi_q(X) and Φq∗(X)\Phi^*_q(X).

The Python package spotoptim implements both batch and efficient update routines:

1
2
3
4
5
6
import numpy as np
from spotoptim import mmphi_intensive, mmphi_intensive_update
X = np.array([[0.0, 0.0], [1.0, 0.0], [0.0, 1.0]])
phi_int, J, d = mmphi_intensive(X, q=2, p=2)
new_point = np.array([0.5,0.5])
phi_new, J_new, d_new = mmphi_intensive_update(X, new_point, J, d, q=2, p=2)
As demonstrated, Φ2∗(X)≃0.9129\Phi^*_2(X) \simeq 0.9129 for three points, and remains stable in scale upon addition (Bartz-Beielstein et al., 26 Dec 2025).

3. Space-Filling Properties and Theoretical Context

Φq∗(X)\Phi^*_q(X) preserves all max–min and anti-clustering characteristics of the original Morris–Mitchell criterion, with the critical distinction that its scale is insensitive to the size of XX. Lower values of Φq∗(X)\Phi^*_q(X) correspond to more uniform coverage and reduced clustering. As q→∞q\rightarrow\infty, the criterion is governed by the minimum pairwise distance, then the number of instances at that distance, and so forth. The monotonicity between Φq(X)\Phi_q(X) and Φq∗(X)\Phi^*_q(X) ensures that the ranking of designs is unchanged for fixed size, but comparability and interpretability across varying sizes are significantly improved.

Empirical studies confirm that for Latin Hypercube Sampling (LHS) in two dimensions, standard Φq(X)\Phi_q(X) increases linearly with nn, while Φq∗(X)\Phi^*_q(X) remains tightly bounded—facilitating longitudinal monitoring and cross-comparison of evolving designs.

4. Applications in Multi-Objective Optimization

The intensified Morris–Mitchell criterion is directly employed in multi-objective optimization scenarios, where industry experimental designs often lack representative coverage of input space. By integrating Φq∗(X)\Phi^*_q(X) into multi-objective desirability functions, practitioners can jointly optimize experimental outcome predictions (from surrogate models such as Random Forest) and the space-filling quality of the design. The spotdesirability package leverages this approach, combining model-based desirability with the intensified Morris–Mitchell improvement metric into a unified score for candidate infill points.

Case study application in compressor development demonstrates optimization of performance objectives alongside Φq∗(X)\Phi^*_q(X), producing designs with improved input coverage and balancing exploration–exploitation trade-offs (Bartz-Beielstein et al., 26 Dec 2025).

5. Practical Implementation and Numerical Behavior

A numerical example illuminates the stability and comparability of Φq∗(X)\Phi^*_q(X): For X={(0,0),(1,0),(0,1)}X = \{(0,0), (1,0), (0,1)\} in R2\mathbb{R}^2, q=2q=2:

  • Pairwise distances: 1,1,21, 1, \sqrt{2}
  • Φ2(X)=2+0.5≃1.5811\Phi_2(X) = \sqrt{2 + 0.5} \simeq 1.5811
  • M=3  ⟹  Φ2∗(X)=1.5811/3≃0.9129M=3 \implies \Phi^*_2(X) = 1.5811 / \sqrt{3} \simeq 0.9129

Adding (0.5,0.5)(0.5, 0.5), Φ2∗\Phi^*_2 shifts in a manner that reflects the spatial configuration but does not change scale drastically, allowing comparability across sizes.

6. Interpretation and Significance

The key innovation of the intensified Morris–Mitchell criterion is its statistical intensiveness, achieved by normalizing the LqL_q-norm over unordered pairs, thus enabling operational use in adaptive sampling designs and real-time monitoring of space-filling improvements. This property is particularly relevant in scenarios where the number of design points is not fixed a priori or is expected to evolve, as in sequential optimization, surrogate-based experimental design, and active learning frameworks.

The robust, monotonic linkage between standard and intensive metrics ensures backward compatibility in ranking for fixed design sizes. A plausible implication is that size-invariance supports meta-optimization routines where batch and incremental improvements must be assessed on a unified scale, which is a recurring challenge in practical multi-objective design optimization.

While the intensified Morris–Mitchell criterion is specialized for space-filling assessment, its statistical normalization principle is generically applicable to other coverage metrics that depend on exhaustive pairwise or set-wise enumeration. The methodology outlined in Bartz-Beielstein (2025b) extends readily to other Minkowski norms, various qq exponents, and arbitrary input dimensionality kk. Its implementation within spotoptim facilitates efficient usage even for large design sets, with computational complexity of O(n2)O(n^2) in batch mode and amortized O(n)O(n) for sequential updates.

The widespread utility and straightforward implementation of the intensified criterion suggest it will remain central to modern design of experiments and surrogate-based optimization methodologies (Bartz-Beielstein et al., 26 Dec 2025).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Intensified Morris-Mitchell Criterion.