viatra / EMF-IncQuery

This repository is only kept for historic reasons. All development happens on eclipse.org
http://eclipse.org/viatra
13 stars 4 forks source link

The Quest for Performance: tuple and match representation, memories #327

Closed bergmanngabor closed 11 years ago

bergmanngabor commented 11 years ago

Experiment with:

bergmanngabor commented 11 years ago

From earlier notes:

bergmanngabor commented 11 years ago
    public void sendUpdate(Receiver receiver, Direction direction, Tuple updateElement) 
    {
        if (org.eclipse.viatra2.gtasm.patternmatcher.incremental.rete.util.Options.synchronous) receiver.update(direction, updateElement);
        else {
            messageQueue.addLast(new UpdateMessage(receiver, direction, updateElement));
        }
    }
bergmanngabor commented 11 years ago
bergmanngabor commented 11 years ago

Migrated to https://bugs.eclipse.org/bugs/show_bug.cgi?id=398765