Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Call me lazy, but can you strip out the irrelevant parts? – Wouter van Nifterick Sep 1 '12 at 1:24
3  
Please remove all unnecessary code. And don't make us guess where line 61 is. – David Heffernan Sep 1 '12 at 7:30
1  
Please tell your Delphi version along with any update applied to it if any. – menjaraz Sep 1 '12 at 7:36
2  
The Format function does not work with arrays of variant. See Format with array of variants?. – LU RD Sep 1 '12 at 7:49
Thanks for the information on the Format function, I solved that now! – user1639822 Sep 1 '12 at 13:28

closed as too localized by David Heffernan, joran, ThePower, Clyde Lobo, ЯegDwight Sep 4 '12 at 9:31

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Sorry guys for including too many details, I am not familiar with posting to Stackoverflow, I just used to read other people's valuable answers here.

However, turns out I've got the answer to my own question and I will now share my short experience with you. I am using Delphi XE by the way, no updates installed.

Seems that the template type constraints caused the problem. I am referring to having things like TFactorGraph<TSelf, TValue, UVariable> which was previously used by me as TFactorGraph<TSelf, TValue, UVariable : TVariable<TValue>>. Now this second declaration was really wrong , because out of some reason the compiler then interprets the constraint in a manner that wouldn't allow me to use my own UVariable even if it was really derived from OR exactly of type TVariable<TValue>. This wouldn't happen when I used the TFactorGraph<> class directly, but happened when another class TSomeClass<> had its own template variables and it made use of TFactorGraph<> like invoking TFactorGraph<T,U,TVariable<U>> or anything similar. No matter how I changed the other function/procedure from the other class, it still wouldn't accept anything.

So in the end what solved my problem is that I removed all type constraints in my template classes and whenever needed, I use typecasting and it works like a charm! I truly hope that with this answer a lot of other frustrated Delphi programmers will finally find out that there is some workaround, even if it comes to abnormal compiler interpretation as this one.

Thanks for the few comments you've shared and I hope this answer was good enough to help the entire community in some way (at least the people who work with Delphi and use template classes)

share|improve this answer
1  
In future please post the exact error message, the exact line that caused the error, and the relevant lines in the definitions of the classes, rather than the entire classes or entire units which are just noise for StackOverflow readers. – Warren P Sep 1 '12 at 16:30
1  
Typecasting isn't really a solution. That's jusr sweeping it under the carpet. If you have to typecast then there's no point using generics at all. – David Heffernan Sep 1 '12 at 18:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.