For Dsp's, it is identical to compose.
Overrides: Mapping
Return the composition of the two Dsps. Two Dsps of the same space are always composable.
(a->compose(b) ->minus(b))->isEqual (a)
(a->compose(b) ->of(pos))->isEqual (a->of (b->of (pos))
Overridden by: CrossMapping GenericCrossDsp IdentityDsp IntegerMapping SequenceMapping
the coordinate space of the domain and range of the Dsp
Overrides: Mapping
Overridden by: CrossMapping GenericCrossDsp IdentityDsp FilterDsp HeaperDsp IDDsp RealDsp IntegerMapping SequenceMapping
Must be valid everywhere in the domain for a Dsp.
Overrides: Mapping
Overrides: Mapping
Overrides: Mapping
Return the inverse of this transformation. Considering the Dsp as a set of pairs
(see class comment), return the Dsp which has the mirror image of all my
pairs.
Overrides: Mapping
Overridden by: CrossMapping GenericCrossDsp IdentityDsp IntegerMapping SequenceMapping
Return the composition of my inverse with the other.
a->inverseCompose(b) ->isEqual (a->inverse()->compose(b))
Overridden by: GenericCrossDsp IdentityDsp IntegerMapping SequenceMapping
Since Dsps always represent a unique mapping in either direction, the permission to BLAST
in the Mapping constract no longer applies.
a->inverseOf(b) ->isEqual (a->inverse()->of(b))
Overrides: Mapping
Overridden by: GenericCrossDsp IdentityDsp IntegerMapping SequenceMapping
Inverse transform a region. A simple region must yield a simple region.
a->inverseOfAll(b) ->isEqual (a->inverseAll()->of(b))
Overrides: Mapping
Overridden by: GenericCrossDsp IdentityDsp IntegerMapping SequenceMapping
Overrides: Mapping
Says whether this Dsp maps every Position onto itself
Overrides: Mapping
Overridden by: CrossMapping GenericCrossDsp IdentityDsp IntegerMapping SequenceMapping
Return the difference of the two Dsps.
(a->compose(b) ->minus(b))->isEqual (a)
Overridden by: CrossMapping GenericCrossDsp IdentityDsp IntegerMapping SequenceMapping
Since Dsps always represent a unique mapping in either direction, the permission to BLAST
in the Mapping constract no longer applies.
Overrides: Mapping
Overridden by: GenericCrossDsp IdentityDsp IntegerMapping SequenceMapping
If 'reg' is a simple region, then the result must also be simple
Overrides: Mapping
Overridden by: CrossMapping GenericCrossDsp IdentityDsp IntegerMapping SequenceMapping
a->compose(b) is the same as b->preCompose(a). Don't use it, use
compose instead.
Overrides: Mapping
Overrides: Mapping
Same as the domain space
Overrides: Mapping
Overrides: Mapping
Overrides: Mapping
A Dsp is a simpleMapping already, so this just returns the singleton set containing me
Overrides: Mapping
The domain of a Dsp is the simple region covering the whole coordinate space, so
I just return a singleton set containing myself
Overrides: Mapping
For Dsp's, it is identical to preCompose.
Overrides: Mapping