Questions tagged [disambiguation]

This tag refers to the process of making something less ambiguous.

Use this tag for questions related to reducing or eliminating the ambiguity of something, such as code.

63 questions
1
vote
0 answers

DBLP Author Disambiguation

guys, I am doing some research on DBLP, and using the repository of Hugh Glaser, RKB-EXPLORER DBLP(rdf/xml). consider this page of a article in dblp: http://dblp.rkbexplorer.com/id/journals/jvcir/YuanWSZ13 as you can see, the author id of this…
santi
  • 117
  • 3
  • 11
1
vote
1 answer

How can I disambiguate this call to a generic method?

Given the following simple console application which illustrates two ways of notifying on changed properties: namespace ConsoleApplication1 { class Program { static void Main(string[] args) { var person = new…
user833115xxx
  • 293
  • 1
  • 4
  • 14
1
vote
2 answers

Explicitly disambiguating overloaded constructor in Java

I know that if I have an overloaded method in Java that can accept a parameter of several different types, and I want to pass null to the method, I need to explicitly cast it to one of the accepted types. My question is, is it possible to choose…
Artyom
  • 1,599
  • 12
  • 22
1
vote
2 answers

C++ access to members of an inherited class, where the inherited class is a template parameter

I am working with the libMesh FEM library and am trying to develop a class (EqCore) that inherits from libMesh. This class will provide some additional features that are inherited again by a class that I want to actually use (MainEq). The two…
slaughter98
  • 1,759
  • 14
  • 20
1
vote
2 answers

Python Disambiguation

I am currently building a MUD (Multi-User-Domain) for an rpg game. Doing this entirely in Python to both make a game I enjoy, and learn python. A problem I am running in to, and due to the extreme specificity of the question, I've been unable to…
jtsmith1287
  • 1,110
  • 2
  • 13
  • 24
1
vote
2 answers

Git fast forward is (strictly pointerwise) actually fast reverse? Terminology disambiguation for Git newbies

Git fast forward merge is FORWARD in terms of TIME. The pointer goes from older to newer commits. Example (by ffwd merge master pointer is moved from commit D to commit G): Before fast-forward merge: master | …
Martin
  • 1,276
  • 1
  • 10
  • 13
0
votes
1 answer

Disambiguation warning when running application

I am developing a Qt application, and I've been asking some friends of mine to test it. One of them told me that he can't run the application. Here is the error he gets: When he presses yes, then he gets a "mingwm10.dll was not found" message. Of…
Anton Giertli
  • 896
  • 2
  • 10
  • 29
0
votes
2 answers

C++ rookie: how can I store code for a class in helper/auxiliary files, but still access all class member functions?

I have written a class that reads in data from external files, manipulates the data, and then does a calculation. The class is very long, particularly the constructor. This is where I read in data from external files and manipulate it in…
user616199
  • 61
  • 1
  • 7
0
votes
1 answer

Uvm factory registration disambiguation

Considering a verification environment that imports 2 packages, pkg_A and pkg_B. Both packages contain some common class definitions (i.e. same class name, class properties, etc.): pkg_A.sv class…
bradpin
  • 9
  • 5
0
votes
6 answers

How to tell the difference between Java and Kotlin code?

As a beginner to Android app development, I am finding code examples that do not identify whether they are written in Java or Kotlin. Even StackOverflow questions frequently omit the language tag. Is there an easy "tell" in the code where you can…
Weather Vane
  • 33,872
  • 7
  • 36
  • 56
0
votes
1 answer

bigquerqy sql link a common grid_id between groups PART II

The following result was obtained from Part 1. bigquerqy sql link a common grid_id between groups with t1 as ( Select 'obrien-t j' lname_forename_long,11 grid_id_ct ,'grid.416153.4' grid_id,2 name_seq ,1 group_seq UNION ALL Select 'obrien-t…
0
votes
0 answers

SPARQL/DBpedia: how to disambiguate a certain variable from other homonyms on dbpedia

I'm new to SPARQL and DBpedia. I am writing to you because I have a basic logic problem that is creating many problems for me. The main problem I have is the following: given the name of an artist, I have to get (via a SPARQL query) the list of…
0
votes
0 answers

R Development: Use of `::` Operator for `base` Package

TLDR Does rigorous best practice recommend that a proactive R developer explicitly disambiguate all base functions — even the ubiquitously common functions like c() or cat() — within the .R files of their package, using the package::function()…
0
votes
0 answers

Repeating disambiguation errors (python, wikipedia)

Related to, but substantially different from, the problem posed here. I applied the try/except solution posed there in a script for pulling summaries. Code here: termlist = ['carcass','richard nixon','polar bear'] for term in termlist: try: …
0
votes
0 answers

Check if disambiguation is showing

In my app, am trying to share which shows disambiguation dialog when the share button is clicked. However spam clicking this button shows multiple instances of the disambiguation dialog. Question is how do I check that the disambiguation is already…
saintjab
  • 1,626
  • 20
  • 31