Jump to content

Connect Leeroopedia MCP: Equip your AI agents to search best practices, build plans, verify code, diagnose failures, and look up hyperparameter defaults.

Principle:Sdv dev SDV Range Constraint

From Leeroopedia
Knowledge Sources
Domains Data_Quality, Constraint_Satisfaction
Last Updated 2026-02-14 00:00 GMT

Overview

A three-column ordering constraint that ensures a middle column's values fall between a low column and a high column in synthetic data.

Description

The Range constraint extends the Inequality concept to three columns, ensuring low <= middle <= high (or strict inequalities). It uses a similar difference-based transformation approach but applied to two pairs of columns simultaneously.

Usage

Use this constraint when a column must be bounded by two other columns (e.g., actual_price between min_price and max_price).

Theoretical Basis

Transform: Replace middle and high columns with differences:

  • Δ1=middlelow
  • Δ2=highmiddle

Apply log transform to keep values positive: Δ=log(Δ+1)

Reverse Transform: Invert: middle=low+exp(Δ'1)1, high=middle+exp(Δ'2)1

Related Pages

Implemented By

Page Connections

Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment