Difference between revisions of "Visual Prolog 7.2 Upgrade Notes"

From wiki.visual-prolog.com

Line 44: Line 44:
## The format of specifying a fully-qualified (i.e. with an arity) predicate with a return value in <span class="code-span">resolve</span>/<span class="code-span">delegate</span> predicates from qualifications has been changed since Visual Prolog 6.2:: predicateName//N => predicateName/N->This might cause error messages while building your project in the latest version of Visual Prolog.<br /> Fix these errors to develop you project in the current version of Visual Prolog.
## The format of specifying a fully-qualified (i.e. with an arity) predicate with a return value in <span class="code-span">resolve</span>/<span class="code-span">delegate</span> predicates from qualifications has been changed since Visual Prolog 6.2:: predicateName//N => predicateName/N->This might cause error messages while building your project in the latest version of Visual Prolog.<br /> Fix these errors to develop you project in the current version of Visual Prolog.


==Upgrading Projects from Visual Prolog 5.x==


Prolog Development Center provides the [http://www.visual-prolog.com/vip6/Product/migration.htm Migration Tool] that will assist you to migrate your Visual Prolog 5.x projects into Visual Prolog 6.x projects.
After migrating your projects into Visual Prolog 6.x, follow the recommendations above to upgrade your projects into the latest version of Visual Prolog.


==Upgrading Projects from Visual Prolog 5.x==
==Upgrading Projects from Visual Prolog 5.x==

Revision as of 19:07, 13 October 2008

Upgrading Projects from Visual Prolog 7.1 to Visual Prolog 7.2

By default, the installation of Visual Prolog 7.2 will not replace any previously installed versions.

The new version will be installed by default to C:\Program Files\Visual Prolog 7.2. You can remove previous versions at any time, or you may continue to work with both.

Visual Prolog 7.2 projects are backward-compatible with Visual Prolog 7.1 projects.

If you are going to use different versions of Visual Prolog installed at one computer, avoid opening projects by double-clicking on prj6 files.

Some changes might require automatic updates in Visual Prolog 7.1 projects. Therefore, it is recommended to make the project file (PRJ6) writable before the first build.

After you open your project in the Visual Prolog 7.2 IDE, the IDE will automatically perform any necessary updates.

After this, it is recommended you rebuild the project with the help of the Build | Rebuild All command and answer "Yes to All" to the message "The new module is required to be added into the project".

Upgrading Projects from Visual Prolog 7.0 and Visual Prolog 6.x to Visual Prolog 7.2

Depending on Visual Prolog version, you are upgrading your projects from, some additional actions might be required.

  1. Visual Prolog 7.2 projects are not fully backward-compatible with Visual Prolog 7.0 and Visual Prolog 6.x projects.

    Visual Prolog 7.0 and earlier IDE will not allow opening projects modified by Visual Prolog 7.1 IDE.

    It is recommended to create a backup copy of your project before opening it by the Visual Prolog 7.2 IDE.
  2. If you are going to use Visual Prolog 7.2 simultaneously with Visual Prolog 7.0 or an earlier version at the same computer, it is recommended to switch the IDE setting "Open Project at Startup" in the previous version OFF, to prevent opening Visual Prolog 7.1 projects in the earlier IDE.

    Note that beginning with Visual Prolog 7.1, projects are not opened at startup, and, hence, the setting "Open Project at Startup" is not used anymore.
  3. The following keywords were introduced:
    • In Visual Prolog 7.1: properties, try, catch, finally, elseif.
    • In Visual Prolog 7.0: then else foreach doThat means that they can no longer be used as identifiers.
  4. Stronger treatment of types introduced in Visual Prolog 7.0 might require some changes in your program: typically change of declarations or insertions of explicit conversions might be necessary.
  5. Reference domains are not supported since Visual Prolog 7.0. If your project uses reference domains, we recommend to read the "How To Erase Reference Domains from a Project" tutorial.
  6. G-stack is not used anymore since Visual Prolog 7.0. Hence, all G-stack related predicates have been removed.
  7. Beginning with Visual Prolog 7.0 some accelerator keys have been changed to comply with Microsoft standards.
  8. Predicates div and mod have changed their sense.In Visual Prolog 6.1
 
-1 = -5 div 3
-2 = -5 mod 3

Since Visual Prolog 6.2

 
-2 = -5 div 3
+1 = -5 mod 3

So, each file that contains div or mod in the projects created in Visual Prolog 6.1 should be checked, whether it works correctly.The simplest solution is to replace: div => quot

mod => remfor ALL source files.
    1. The format of specifying a fully-qualified (i.e. with an arity) predicate with a return value in resolve/delegate predicates from qualifications has been changed since Visual Prolog 6.2:: predicateName//N => predicateName/N->This might cause error messages while building your project in the latest version of Visual Prolog.
      Fix these errors to develop you project in the current version of Visual Prolog.


Upgrading Projects from Visual Prolog 5.x

Prolog Development Center provides the Migration Tool that will assist you to migrate your Visual Prolog 5.x projects into Visual Prolog 6.x projects.

After migrating your projects into Visual Prolog 6.x, follow the recommendations above to upgrade your projects into the latest version of Visual Prolog.