MapleUnique - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


MapleUnique

return unique copy of an object in external code

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

MapleUnique(kv, s)

Parameters

kv

-

kernel handle of type MKernelVector

s

-

type ALGEB object

Description

• 

This function can be used in external code with OpenMaple or define_external.

• 

The MapleUnique function processes the Maple expression, s, and returns the unique normalized copy of that expression. For example, if you create the number num = one-billion, and then compute the number val = 2*500-million, an address comparison of num and val does not indicate equality. After calling num = MapleUnique(kv,num);, both num and val point to the same memory.

• 

Because Maple maintains a table of unique elements, only one copy of most objects exists in memory.  The expression x2+x contains two references to x, but both point to the same object.  Similarly, 1,2,1,2 contains two sublists, 1,2.  The surrounding list maintains two pointers to the same sublist.  It is usually not safe to directly modify any object that has been processed by Maple. For example, if the sublist were changed from 1,2 to 3,2, the parent list also changes.  In fact, all references to the list 1,2 in Maple would then point to 3,2. This would cause many problems. For example, table lookups of the 1,2 element would be changed to look up the 3,2 element.  It is safe to directly modify only data blocks of mutable objects like rtables and tables.  Never change strings returned by MapleToString, or expression sequences like the args object given to the external entry point.

Examples

    #include "maplec.h"

    ALGEB M_DECL MyGuessList( MKernelVector kv, ALGEB *args )

    {

    static ALGEB mylist = NULL;

    if( !mylist ) {

        mylist = MapleListAlloc(kv,2);

        MapleListAssign(kv,mylist,1,ToMapleInteger(kv,rand()%2));

        MapleListAssign(kv,mylist,2,ToMapleInteger(kv,rand()%2));

        mylist = MapleUnique(kv,mylist);

        MapleGcProtect(kv,mylist);

    }

    if( MapleNumArgs(kv,(ALGEB)args) > 0 && args[1] == mylist ) {

        return( ToMapleBoolean(kv,TRUE) );

    }

    return( ToMapleBoolean(kv,FALSE) );

    }

Execute the external function from Maple.

withExternalCalling:

dllExternalLibraryNameHelpExamples:

guessDefineExternalMyGuessList,dll:

guess0,0

false

(1)

guess1,0

false

(2)

guess0,1

true

(3)

guess1,1

false

(4)

See Also

CustomWrapper

define_external

OpenMaple

OpenMaple/C/API

OpenMaple/C/Examples