blob: 035d5c53e39a74e4ba6b9843434c145dc377911d [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.Loss_functions;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Loss functions 1</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functions_1#isSize_average <em>Size average</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functions_1#isReduce <em>Reduce</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functionsPackage#getLoss_functions_1()
* @model abstract="true"
* @generated
*/
public interface Loss_functions_1 extends Loss_functions {
/**
* Returns the value of the '<em><b>Size average</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Size average</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Size average</em>' attribute.
* @see #setSize_average(boolean)
* @see org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functionsPackage#getLoss_functions_1_Size_average()
* @model dataType="org.eclipse.uml2.types.Boolean" ordered="false"
* @generated
*/
boolean isSize_average();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functions_1#isSize_average <em>Size average</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Size average</em>' attribute.
* @see #isSize_average()
* @generated
*/
void setSize_average(boolean value);
/**
* Returns the value of the '<em><b>Reduce</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Reduce</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Reduce</em>' attribute.
* @see #setReduce(boolean)
* @see org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functionsPackage#getLoss_functions_1_Reduce()
* @model dataType="org.eclipse.uml2.types.Boolean" ordered="false"
* @generated
*/
boolean isReduce();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Loss_functions.Loss_functions_1#isReduce <em>Reduce</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Reduce</em>' attribute.
* @see #isReduce()
* @generated
*/
void setReduce(boolean value);
} // Loss_functions_1