Please check the below code snippets that keep me getting compiling errors and blockage in my coding progress. I will then shortly present what errors are generated.
Factor.pas
type
TFactor<TValue> = class
private
_Messages: TList<TMessage<TValue>>;
_MessageToVariableBinding: TObjectDictionary<TMessage<TValue>, TVariable<TValue>>;
_Variables: TList<TVariable<TValue>>;
function getName: string;
procedure setName(Value: String);
function getVariables: TList<TVariable<TValue>>;
function getMessages: TList<TMessage<TValue>>;
property _Name: string read getName write setName;
function getLogNormalization: double;
function getNumberOfMessages: integer;
protected
constructor Create(name: String);
function CreateVariableToMessageBinding(variable: TVariable<TValue>; message_x: TMessage<TValue>): TMessage<TValue>; overload;
function UpdateMessage(message1: TMessage<TValue>; variable: TVariable<TValue> ): double; overload; virtual;
function UpdateMessage(messageIndex: integer): double; overload; virtual;
//...
property Variables: TList<TVariable<TValue>> read getVariables;
property Messages: TList<TMessage<TValue>> read getMessages;
// function Variables: TList<TVariable<TValue>>;
// function Messages: TList<TMessage<TValue>>;
public
property LogNormalization: double read getLogNormalization;
property NumberOfMessages: integer read getNumberOfMessages;
procedure ResetMarginals;
function SendMessage(message_x: TMessage<TValue>; variable: TVariable<TValue>): double; overload; virtual; abstract;
function SendMessage(messageIndex: integer): double; overload;
function CreateVariableToMessageBinding(variable: TVariable<TValue>): TMessage<TValue>; overload; virtual; abstract;
function ToString: string; override;
end;
FactorGraphLayer.pas
type
TFactorGraphLayerBase<TValue> = class abstract
public
procedure BuildLayer; virtual;abstract;
function CreatePriorSchedule: TSchedule<TValue>; virtual;
function CreatePosteriorSchedule: TSchedule<TValue>; virtual;
procedure SetRawInputVariablesGroups(value: TObject); virtual; abstract;
function GetRawOutputVariablesGroups: TObject; virtual;abstract;
end;
TFactorGraphLayer<TParentGraph, TValue, TBaseVariable, TInputVariable, TOutputVariable,
UFactor: TFactor<TValue>> = class abstract (TFactorGraphLayerBase<TValue>)
private
_LocalFactors: TList<UFactor>;
_OutputVariablesGroups: TList<TList<TOutputVariable>>;
_InputVariablesGroups: TList<TList<TInputVariable>>;
function getParentFactorGraph: TParentGraph; virtual;abstract;
procedure setParentFactorGraph(Value: TParentGraph); virtual;abstract;
function getInputVariablesGroups: TList<TList<TInputVariable>>;
function getOutputVariablesGroups: TList<TList<TOutputVariable>>;
function getLocalFactors: TList<UFactor>;
function getUntypedFactors: TList<UFactor>;
protected
constructor Create(parentGraph: TParentGraph);
property InputVariablesGroups: TList<TList<TInputVariable>> read getInputVariablesGroups;
function ScheduleSequence<T : TSchedule<TValue>>(
itemsToSequence: IEnumerable<T>;
nameFormat: string;
args: varray
): TSchedule<TValue>;
public
property OutputVariablesGroups: TList<TList<TOutputVariable>> read getOutputVariablesGroups;
property ParentFactorGraph: TParentGraph read getParentFactorGraph write setParentFactorGraph;
property LocalFactors: TList<UFactor> read getLocalFactors;
property UntypedFactors: TList<UFactor> read getUntypedFactors;
procedure SetRawInputVariablesGroups(value: TObject); override;
function GetRawOutputVariablesGroups: TObject; override;
end;
Schedule.pas
type
TSchedule<T> = class abstract
private
_Name: string;
protected
constructor Create(name: string);
public
function Visit(depth, maxDepth: Integer): double; overload; virtual; abstract;
function Visit: double; overload;
function ToString: string; override;
end;
TScheduleStep<T> = class(TSchedule<T>)
private
_Factor: TFactor<T>;
_Index: Integer;
public
constructor Create(name: string; factor: TFactor<T>; index: Integer);
function Visit(depth, maxDepth: Integer): double; override;
end;
TScheduleSequence<TValue,USchedule : TSchedule<TValue>> = class(TSchedule<TValue>)
private
_Schedules: IEnumerable<USchedule>;
public
constructor Create(name: string; schedules: IEnumerable<USchedule>);
function Visit(depth, maxDepth: integer): double; override;
end;
CommonDefinitions.pas
type
intarray = array of integer;
varray = array of Variant;
darray = array of double;
ddarray = array of darray;
objarray = array of TObject;
Now, when I try to compile this simple function from FactorGraphLayer.pas, I get the error [DCC Error] FactorGraphLayer.pas(61): E2515 Type parameter
'TValue' is not compatible with type 'Schedule.TSchedule<FactorGraphLayer.TFactorGraphLayer<TParentGraph,TValue,TBaseVariable,TInputVariable,TOutputVariable,UFactor>.TValue>'
function TFactorGraphLayer.ScheduleSequence(
itemsToSequence: IEnumerable;
nameFormat: string;
args: varray
): TSchedule;
var
formattedName: String;
begin
formattedName := ''; //Format(nameFormat, args); needs change
Result := TScheduleSequence.Create(formattedName, itemsToSequence);
end;
Also, why can't I simply pass different parameters to the Format function similar to what C++ or C# would allow? I can't figure out why Delphi generics are this complicated and nothing seems to be simple (while it is logical, it's still not simple and logic doesn't seem to make it work). Any tips/suggestions?

Formatfunction does not work with arrays ofvariant. See Format with array of variants?. – LU RD Sep 1 '12 at 7:49Formatfunction, I solved that now! – user1639822 Sep 1 '12 at 13:28