The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
19 views

JavaCC Ambiguities: How do I tell the parser to chose a certain match from the the list of “longer matches”?

For some input, the parser presents a "Possible kinds of longer matches : { <EXPRESSION>, <TEXT> }", but for some odd reason it chooses the wrong one. This is the source: SKIP : { " ...
2
votes
3answers
53 views

Java grammar ambiguity

public class Ambiguity { public static void main(String[] args) { int Integer = 3; System.out.println((Integer) null); // cast; prints "null" ...
0
votes
1answer
33 views

Ambiguity error?

So I'm rather a newbie when it comes to programming especially in c# i have an error i need help with? So I'm trying to create a rpg system i started out before all else with the battle system which ...
0
votes
1answer
35 views

BioPython consensus sequence with gaps coded as 'N' and polymorphisms as ambiguities

I am trying to write code to get a consensus sequence for each of the 100+ files of individual fasta alignments in a folder. To start I just wanted to get the consensus for one sequence (then I will ...
0
votes
1answer
52 views

to_string(42) more than one instance matches the argument

Exacly as in the subject I use VS2010: I have: std::string s = std::to_string(42); and the error Error 4 error C2668: 'std::to_string' : ambiguous call to overloaded function how to repair ...
0
votes
0answers
77 views

CakePHP Routing & HTML Helper Link Ambiguity

I have a site that uses CakePHP 2.x. There's a backend interface where actions use the standard Cake layouts and views, but several of the actions are also exposed to front end users as "dialogs" ...
2
votes
1answer
71 views

Constructor call as constructor parameter evaluates the declaration as a function pointer

I just came across a weird ambiguity which took me ages to isolate since it suddenly appeared in the middle of some template mess after a minor API change. The following example explores different ...
1
vote
1answer
31 views

Xstream Ambigious xml tags

I'm working on a Android project, which is using an API to get it's data. Now first of all, I can't change anything to the API because it's also used in an iPhone app which has allready been launced. ...
1
vote
2answers
74 views

How can I resolve ambiguity of boost::signals2's slot_type and boost::bind, and why is it even ambiguous?

Considering this example: #include <boost/signals2/signal.hpp> #include <boost/bind.hpp> typedef boost::signals2::signal< void ( double ) > DoubleSignalType; typedef ...
1
vote
1answer
79 views

Call of overloaded is ambiguous

I have the following compiler error : "call of overloaded ‘reduceColors(ipl_image_wrapper&, ipl_image_wrapper&, int)’ is ambiguous" I have a wrapper class for IplImage (DrawingDetection.h): ...
2
votes
0answers
60 views

Ambiguity in inheritance but not with shadowing

Let's assume we have a extensible class Component which might hold features most of my classes should have access to. Right now it is about exposing a pointer type in each class. With new alias ...
0
votes
0answers
27 views

How to present the most relevant entities?

What I'm trying to do is much like Summer. The difference is that I will extract all named-entities in a given article including people, place, organization, etc. Then I'll show users some relevant ...
1
vote
1answer
48 views

Removing ambiguity in bison

I am writing a simple parser in bison. The parser checks whether a program has any syntax errors with respect to my following grammar: %{ #include <stdio.h> void yyerror (const char *s) /* ...
1
vote
1answer
131 views

Ambiguous grammar

I am looking at the following grammar and I believe its Ambiguous at line 3, but not sure. <SL> → <S> <SL> → <SL> <S> <S> → i <B> <S> e <S> ...
0
votes
1answer
176 views

Printing a binary tree using InOrder traversal without ambiguity

I am trying to print out a binary tree using in-order traversal (in java), but without any ambiguity. I created the tree from a post-order notation input. For example, input = 2 3 4 * - 5 + I then ...
5
votes
1answer
95 views

Is there a set way to determine ambiguity in a grammar?

We are learning about ambiguity in class, and the following grammar was given as an example of an ambiguous grammar. I just am not seeing how it is ambiguous. Is there a set pattern or method people ...
0
votes
0answers
32 views

Repeated inheritance. Ambiguous

Lets suppose situation. struct Top { int x; }; struct Left : public Top {}; struct Right : public Top {}; struct Bottom : public Left, public Right { void foo() { Left::x; // Normal ...
0
votes
1answer
112 views

Guidance in creating design for multiple-inheritance composite classes in c++

I intend this question to be a more generalized question relating to my question found at the following link: Solving design involving multiple inheritance and composite classes in c++ I am working ...
6
votes
4answers
172 views

Solving design involving multiple inheritance and composite classes in c++

I have struggled with this design problem for some time. I will do my best to explain what I am trying to do and the various approached that I have seen, what I am trying and why. I work in a ...
3
votes
1answer
63 views

Two methods returning different types without parameters, how to call?

There is some .net Dll library, this Dll contains a class with two methods with the same name, such as: void b() { } bool b() { } It is not possible in C#, but it appear to be OK internally, how ...
2
votes
1answer
55 views

ANTLR ambiguity '-'

I have a grammar and everything works fine until this portion: lexp : factor ( ('+' | '-') factor)* ; factor :('-')? IDENT; This of course introduces an ambiguity. For example a-a can be matched ...
0
votes
2answers
53 views

operator= ambiguity in junction with conversion operators

I have the following situation: class B; class A { private: int n; public: A& operator=(const A& a) { } A& operator=(const int n) { ...
0
votes
1answer
73 views

proving ambiguity

ive been trying to prove a grammar ambiguous, from my understanding its not, but according to the question; it should be ambiguous. The grammar is S -> AB | aaB A -> a | Aa B -> b the ...
2
votes
2answers
179 views

Conversion Operator Overload - Function Ambiguity

I am trying to create interoperability between my Math library and some of the DirectX built in methods by creating overloaded conversion operators. Basically my structs need to convert themselves to ...
0
votes
1answer
103 views

postgresql plpgsql compiler: why is it finding ambiguity where there is none

Why this runtime error? ERROR: column reference "arrive" is ambiguous LINE 6: case when ( (cast('05:00' as time) >= arrive) DETAIL: It could refer to either a PL/pgSQL variable or a table ...
2
votes
2answers
123 views

why is postgresql considering this subquery column-name not fully qualified and ambiguous

Select distinct A.col1, B.col2, col3 from A inner join B on A.id = B.id and B.id in (select distinct col2 from B where ..... ) PostgreSQL's plpgsql parser does not like the ...
0
votes
1answer
71 views

Python PLY Lex ambiguity

I have a problem with ambiguity on tokens level. The problem looks like this. My code looks like this so token t_UN1 has higher precedence. t_ignore = ' \t\v\r' # whitespace .... def t_UN1(t): ...
4
votes
2answers
88 views

Why does vb.net reject assignment to nested covariant interface as “ambiguous”

In the code: Interface ISelf(Of Out TMe) End Interface Class SomeBase Implements ISelf(Of SomeBase) End Class Class SomeDerived Inherits SomeBase Implements ISelf(Of SomeDerived) End ...
3
votes
2answers
110 views

How to avoid shared_ptr ambiguity? (stl vs boost) [duplicate]

Possible Duplicate: Why is ‘using namespace std;’ considered a bad practice in C++? I've used stl's shared_ptr many places in my code and I have used the following using statement anywhere ...
1
vote
1answer
29 views

mysql conflicting where clause

I have the following tables: users: id, username, password, created, modified posts: id, user_id, message, created, modified I am trying to run a query that gets the last 5 posts that were created ...
0
votes
1answer
25 views

E/R diagrams: is the term entity commonly misused?

Do people often use the word "entity" to refer to what will latter become a table? If yes, isn't this technically incorrect because it's the entity sets that typically become tables? It seems to me ...
6
votes
2answers
193 views

Generics in C# with multiple generic types leads to allowed and disallowed ambiguity

I recently wrote this and was surprised that it compiles: public class MyGeneric<U, V> { MyGeneric(U u) { ... } MyGeneric(V v) { ... } public void Add(U u, V v) { ... } public void ...
2
votes
2answers
172 views

JBehave ambiguous step

Say I have: @Given("first name is $firstName") @Given("first name is $firstName and last name is $lastName") The following step would be marked as ambiguous: Given first name is John and last name ...
2
votes
1answer
29 views

ANTLR ambigous reference - how to get output?

So I have a rule for statement which can lead to more statements: statement returns[String txt] : '{'{ $txt="{"; } (statement{ $txt+=$statement.txt; ...
41
votes
4answers
549 views

No warning or error (or runtime failure) when contravariance leads to ambiguity

First, remember that a .NET String is both IConvertible and ICloneable. Now, consider the following quite simple code: //contravariance "in" interface ICanEat<in T> where T : class { void ...
3
votes
1answer
49 views

Ambiguity not picked up by compiler

I had to spent some time in finding and fixing a bug that I managed to isolate in the following code: #include <iostream> struct A { std::string S; A(const std::string s) { S = s; } }; ...
7
votes
1answer
112 views

Function equality/ordering in erlang

What does it mean to compare functions in Erlang with the operators =:=,==,<,>,=<,>=? I was playing around with the interpreter and got these results: Eshell V5.9.2 (abort with ^G) ...
1
vote
6answers
228 views

What's the connection timeout of a socket created with a connecting constructor?

What's the connection timeout of a socket created with a connecting constructor? In Java SE 6, the following constructors for Socket will connect the socket right away instead of you having to call ...
2
votes
2answers
689 views

Ambiguity in Word Interop code

I recently posted a question about reading Word files here. The app runs fine however I get this Warning message; Warning Ambiguity between method ...
0
votes
0answers
75 views

Give an example of a harmful ambiguity that can arise from a grammar.

I have this problem for a formal language processing course for an LL1 grammar: Give an example of a 'harmful' ambiguity; i.e. a string for which different syntax trees describe different regular ...
0
votes
3answers
262 views

C++: ambigous function

I almost don't know C++, but I need help to solve project build problem. When I make project, it gives me error which says that some functions are ambigous. I clearly understand what it's mean "It ...
4
votes
2answers
149 views

Is there a workaround for “incompatible parameter list” message from Delphi IDE?

Please consider this simplified example: type TForm43 = class(TForm) drwgrd1: TDrawGrid; procedure drwgrd1DrawCell(Sender: TObject; ACol, ARow: Integer; Rect: Windows.TRect; State: ...
1
vote
4answers
89 views

operator[] ambiguity resolution

noob here. The following is a fragment from a class definition I came accross in a book example: double& operator[](int i); double operator[](int i) const; My question is: why is this not ...
5
votes
2answers
89 views

Why ambiguities with generics are inconsistent, instead of raising errors? [duplicate]

Possible Duplicate: Generic methods and method overloading Say I have a class like class SortedList<K> { public string this[int i] { get { return "a"; /* dummy sample code */ } } ...
0
votes
3answers
157 views

C++: Constructor ambiguity

Will this cause an ambiguity?: class A { ... }; class B : public A { //... B(const B& b); B(const A& a); //... };
1
vote
1answer
56 views

How to set flat precedence rules in ANTLR?

I would like to set precedence rules (for example for math operators of multiplication and addition -- i.e. * and +) however in flat manner. Take a look: http://www.gregbugaj.com/?p=251 (in short it ...
1
vote
1answer
121 views

Converting ASCII strings into numbers

For an arbitrary precision integer class i wrote, I have a constructor that accepts a string containing the integer's value and an uint16_t to say what base the string is in. integer("123", 10) ...
1
vote
2answers
242 views

Problems with LL(1) grammar

I have a 26 rule grammar for a sub-grammar of Mini Java. This grammar is supposed to be non-object-oriented. Anyway, I've been trying to left-factor it and remove left-recursion. However I test it ...
0
votes
1answer
798 views

Sending POST parameters with Python using Mechanize

I want to fill out this form using Python: <form method="post" enctype="multipart/form-data" id="uploadimage"> <input type="file" name="image" id="image" /> <input ...
18
votes
2answers
259 views

C++ method call and type scope resolution ambiguity

I hope the title actually describes what I wanted to ask... I wrote a piece of code that compiles with gcc and works as I intended. However, it does not compile with llvm and the code executes ...

1 2 3 4