All Downloads are FREE. Search and download functionalities are using the official Maven repository.

openllet.aterm.pure.binary.ATermConstruct Maven / Gradle / Ivy

There is a newer version: 2.6.5
Show newest version
package openllet.aterm.pure.binary;

import openllet.aterm.ATerm;

/**
 * A structure that contains all information we need for reconstructing a term.
 *
 * @author Arnold Lankamp
 */
class ATermConstruct
{
	public int type;

	public int termIndex = 0;
	public ATerm tempTerm = null;

	public int subTermIndex = 0;
	public ATerm[] subTerms = null;

	ATermConstruct(final int type, final int termIndex)
	{
		this.type = type;
		this.termIndex = termIndex;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy