Uses of Class
mln.Type

Packages that use Type
mln This package builds the data structure of MLN. 
 

Uses of Type in mln
 

Fields in mln declared as Type
static Type Type.Bool
           
static Type Type.Float
           
static Type Type.Generic
          Built-in types
static Type Type.Integer
           
static Type Type.String
           
 

Methods in mln that return Type
 Type MarkovLogicNetwork.getOrCreateTypeByName(java.lang.String name)
          Return the type of a given name; create if this type does not exist.
 Type Function.getRetType()
          Get return type
 Type Predicate.getTypeAt(int k)
          Return the type of the k-th argument.
 

Methods in mln that return types with arguments of type Type
 java.util.List<Type> Function.getArgTypes()
           
 

Methods in mln with parameters of type Type
 void Function.addArgument(Type type)
           
 void Predicate.appendArgument(Type t)
          Append a new argument without a user-provided name.
 void Predicate.appendArgument(Type t, java.lang.String name)
          Append a new argument with a user provided name.
 int MarkovLogicNetwork.getSymbolID(java.lang.String symbol, Type type)
          Return assigned ID of a constant symbol.
 

Constructors in mln with parameters of type Type
Function(java.lang.String name, Type retType)