RealDomain

interface RealDomain : Domain<Double>

n-dimensional volume

Author

Alexander Nozik

Functions

contains
Link copied to clipboard
common
abstract operator fun contains(point: Point<Double>): Boolean
Checks if the specified point is contained in this domain.
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
getLowerBound
Link copied to clipboard
common
abstract fun getLowerBound(num: Int): Double?
Global lower edge
abstract fun getLowerBound(num: Int, point: Point<Double>): Double?
The lower edge for the domain going down from point
getUpperBound
Link copied to clipboard
common
abstract fun getUpperBound(num: Int): Double?
Global upper edge
abstract fun getUpperBound(num: Int, point: Point<Double>): Double?
The upper edge of the domain going up from point
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
nearestInDomain
Link copied to clipboard
common
abstract fun nearestInDomain(point: Point<Double>): Point<Double>
toString
Link copied to clipboard
common
open fun toString(): String
volume
Link copied to clipboard
common
abstract fun volume(): Double
Hyper volume

Properties

dimension
Link copied to clipboard
common
abstract val dimension: Int
Number of hyperspace dimensions.

Inheritors

HyperSquareDomain
Link copied to clipboard
UnconstrainedDomain
Link copied to clipboard
UnivariateDomain
Link copied to clipboard