blob: 069ac5840d07299e21cbde3f11b8256222c468e0 [file] [log] [blame]
/**
* Copyright (c) 2020 CEA LIST
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
*/
package org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_initializers;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>random uniform</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_initializers.random_uniform#getMinval <em>Minval</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_initializers.random_uniform#getMaxval <em>Maxval</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_initializers.Layer_weight_initializersPackage#getrandom_uniform()
* @model
* @generated
*/
public interface random_uniform extends initializer_with_seed {
/**
* Returns the value of the '<em><b>Minval</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Minval</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Minval</em>' attribute.
* @see #setMinval(double)
* @see org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_initializers.Layer_weight_initializersPackage#getrandom_uniform_Minval()
* @model dataType="org.eclipse.uml2.types.Real" required="true" ordered="false"
* @generated
*/
double getMinval();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_initializers.random_uniform#getMinval <em>Minval</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Minval</em>' attribute.
* @see #getMinval()
* @generated
*/
void setMinval(double value);
/**
* Returns the value of the '<em><b>Maxval</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Maxval</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Maxval</em>' attribute.
* @see #setMaxval(double)
* @see org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_initializers.Layer_weight_initializersPackage#getrandom_uniform_Maxval()
* @model dataType="org.eclipse.uml2.types.Real" required="true" ordered="false"
* @generated
*/
double getMaxval();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_initializers.random_uniform#getMaxval <em>Maxval</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Maxval</em>' attribute.
* @see #getMaxval()
* @generated
*/
void setMaxval(double value);
} // random_uniform