![JAR search and dependency download from the Maven repository](/logo.png)
org.ggp.base.util.propnet.architecture.components.Not Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alloy-ggp-base Show documentation
Show all versions of alloy-ggp-base Show documentation
A modified version of the GGP-Base library for Alloy.
The newest version!
package org.ggp.base.util.propnet.architecture.components;
import org.ggp.base.util.propnet.architecture.Component;
/**
* The Not class is designed to represent logical NOT gates.
*/
@SuppressWarnings("serial")
public final class Not extends Component
{
/**
* Returns the inverse of the input to the not.
*
* @see org.ggp.base.util.propnet.architecture.Component#getValue()
*/
@Override
public boolean getValue()
{
return !getSingleInput().getValue();
}
/**
* @see org.ggp.base.util.propnet.architecture.Component#toString()
*/
@Override
public String toString()
{
return toDot("invtriangle", "grey", "NOT");
}
@Override
public String getShortName() {
return "not(" + getSingleInput().getShortName() + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy