Anaphory
Anaphory

Reputation: 6400

Where do I find the LibTypes and LibGIS units for FreePascal?

I found some Pascal code in the supplementary material of a paper. After the metadata comment, the program starts with

unit LibLPMMain;

interface

uses
  {$IfDef DLLShapes}LibFastShareMem,{$EndIf}
  SysUtils, Classes, Math, Linux, SyncObjs,
  {$IfNDef CONSOLE}
  ExtCtrls,
  {$EndIf}
  LibTypes, LibGIS, LibFiles, LibStats, LibPhyStats,
  LibGeometry, LibMCMC,
  LibMatrix, LibProbDistrib;

I have loaded the file into Lazarus and attempted compile it using FreePascal, which complains

LibLPMMain.pas(37,3) Fatal: Cannot find LibTypes used by LibLPMMain of the Project Inspector.

Are the units listed here libraries I should be able to find somewhere – and if so, where – or do I have to contact the authors of the paper to provide me with those libraries before I can attempt to execute their simulation?

Upvotes: 0

Views: 51

Answers (1)

Related Questions