Home Manual Reference Source Test
import HardVolumeRangeConstraint from 'Artistoo/src/hamiltonian/HardVolumeRangeConstraint.js'
public class | source

HardVolumeRangeConstraint

Extends:

ConstraintHardConstraint → HardVolumeRangeConstraint

This constraint forbids that cells exceed or fall below a certain size range.

Example:

// Build a CPM and add the constraint
let CPM = require( "path/to/build" )
let C = new CPM.CPM( [200,200], {T : 4})
C.add( new CPM.HardVolumeRangeConstraint( {
	LAMBDA_VRANGE_MIN : [0,1],
	LAMBDA_VRANGE_MAX : [0,2]
} ) )

Constructor Summary

Public Constructor
public

The constructor of the HardVolumeRangeConstraint requires a conf object with two parameters.

Method Summary

Public Methods
public

This method checks that all required parameters are present in the object supplied to the constructor, and that they are of the right format.

public

fulfilled(src_i: IndexCoordinate, tgt_i: IndexCoordinate, src_type: CellId, tgt_type: CellId): boolean

Method for hard constraints to compute whether the copy attempt fulfills the rule.

Inherited Summary

From class Constraint
public get abstract

This method is actually implemented in the subclass.

public set

CPM(C: CPM)

This function attaches the relevant CPM to this constraint, so that information about this cpm can be requested from the constraint.

public get

Get the parameters of this constraint from the conf object.

public

C: CPM

CPM on which this constraint acts.

public

Configuration object for this constraint.

public abstract

The optional confChecker method should verify that all the required conf parameters are actually present in the conf object and have the right format.

From class HardConstraint
public get

Let the CPM know that this is a soft constraint, so return 'soft'.

public abstract

fulfilled(src_i: IndexCoordinate, tgt_i: IndexCoordinate, src_type: CellId, tgt_type: CellId): boolean

Hard constraints must have a 'fulfilled' method to compute whether the copy attempt fulfills the rule.

Public Constructors

public constructor(conf: object) source

The constructor of the HardVolumeRangeConstraint requires a conf object with two parameters.

Override:

Constraint#constructor

Params:

NameTypeAttributeDescription
conf object

parameter object for this constraint.

conf.LAMBDA_VRANGE_MIN PerKindNonNegative

minimum volume of each cellkind.

conf.LAMBDA_VRANGE_MAX PerKindNonNegative

maximum volume of each cellkind.

Public Methods

public confChecker() source

This method checks that all required parameters are present in the object supplied to the constructor, and that they are of the right format. It throws an error when this is not the case.

Override:

Constraint#confChecker

public fulfilled(src_i: IndexCoordinate, tgt_i: IndexCoordinate, src_type: CellId, tgt_type: CellId): boolean source

Method for hard constraints to compute whether the copy attempt fulfills the rule.

Override:

HardConstraint#fulfilled

Params:

NameTypeAttributeDescription
src_i IndexCoordinate

coordinate of the source pixel that tries to copy.

tgt_i IndexCoordinate

coordinate of the target pixel the source is trying to copy into.

src_type CellId

cellid of the source pixel.

tgt_type CellId

cellid of the target pixel.

Return:

boolean

whether the copy attempt satisfies the constraint.