Project

General

Profile

Actions

Bug #3985

closed

Types resolved to unacceptable types

Added by Oliver Soong about 15 years ago. Updated over 14 years ago.

Status:
Resolved
Priority:
Normal
Category:
general
Target version:
Start date:
04/14/2009
Due date:
% Done:

0%

Estimated time:
Bugzilla-Id:
3985

Description

URL provides a sample workflow that has been demonstrating the error on my system. Because this problem has been confusingly inconsistent in the past, I'm not 100% convinced it will produce an error for others, but it seems to be causing problems on three builds on my system, two builds in a VM, and two systems in the vislab here, so hopefully I won't be alone this time. It's affecting both 1.0.0 and 1.x dev.


Files

UnacceptableTypesProblem.xml (26.4 KB) UnacceptableTypesProblem.xml Christopher Brooks, 05/04/2009 04:39 PM

Related issues

Blocked by Kepler - Bug #3986: RExpression confounding R working directory and .kepler folderResolvedben leinfelder04/14/2009

Actions
Actions #1

Updated by Oliver Soong about 15 years ago

This bug is slightly more fun. Change the SDF Director to allow disconnected graphs, delete the relation, then run it. It should work. Now rehook the actors and now it should run as expected. Save the file, close it, and reopen. The bug is back (or never went away, or the cached data that seems to allow things to work has been cleared, or something similar).

Actions #2

Updated by Christopher Brooks almost 15 years ago

I downloaded this from
http://www.nceas.ucsb.edu/~soong/kepler/Unacceptable%20Types%20Problem.xml
and am uploading it so that we have a copy with the bug (urls are notorious
for changing).

It looks like an R problem. When I run this, I get:

ptolemy.actor.TypeConflictException: Types resolved to unacceptable types in .Unacceptable Types Problem due to the following inequalities:
(ptolemy.actor.TypedIOPort {.Unacceptable Types Problem.RExpression.irisdf}, unknown) <= (ptolemy.actor.TypedIOPort {.Unacceptable Types Problem.RExpression2.irisdf}, unknown)

at ptolemy.actor.TypedCompositeActor.resolveTypes(TypedCompositeActor.java:324)
at ptolemy.actor.Manager.resolveTypes(Manager.java:1058)
at ptolemy.actor.Manager.preinitializeAndResolveTypes(Manager.java:940)
at ptolemy.actor.Manager.initialize(Manager.java:601)
at ptolemy.actor.Manager.execute(Manager.java:338)
at ptolemy.actor.Manager.run(Manager.java:1109)
at ptolemy.actor.Manager$3.run(Manager.java:1150)

If I explicitly set the type of the irisdf port to integer, then the model runs.

I'm not sure if this is a bug, does R actually propagate types?

Actions #3

Updated by Oliver Soong almost 15 years ago

It seems like the error is thrown before R even runs, in which case it probably wouldn't be a problem with R itself. R does have its own types, which the R actor converts to Ptolemy types. Since the Expression actor also works with undeclared types, there is something in particular about the R actor that the type resolution code doesn't seem to like. Although explicitly specifying the type will work, it's clearly not necessary from a user's perspective (why do Expressions work but RExpressions not) and it imposes constraints on the code users are able to run. This problem doesn't happen every time two R actors are connected, either. I might be able to help more if I knew more about unknown <= unknown, since presumably type = type is allowable.

In playing around a little more, if I set the two port types to int, run the workflow, then set the port types to be blank (unknown?) and change the code to be irisdf <- "1", the token will be converted to a number on output. Setting the output port explicitly to a string will cause another type error that claims the input port is an int type. Ke/Pt is throwing an exception based on outdated information on undeclared types, which is also what the workaround in comment 1 relies upon.

Actions #4

Updated by ben leinfelder over 14 years ago

from the RExpression actor we won't "know" the type of the port until the R script executes and we're emitting/reading to or from the port.
Christopher -
Why does the type lattice not allow two ports that are resolved to "unknown" to be connected and the model to be run? Can we change that?

Actions #5

Updated by ben leinfelder over 14 years ago

Added a check during preinitialize() that will find unknown-to-unknown connections and set the RExpression unknown-typed output port to "general" so that the type check passes.

Actions #6

Updated by Redmine Admin about 11 years ago

Original Bugzilla ID was 3985

Actions

Also available in: Atom PDF