Tagged Questions
The heterogeneous tag has no wiki summary.
6
votes
4answers
169 views
What would be the safest way to store objects of classes derived from a common interface in a common container?
I'd like to manage a bunch of objects of classes derived from a shared interface class in a common container.
To illustrate the problem, let's say I'm building a game which will contain different ...
4
votes
5answers
184 views
Heterogeneous containers in C++
I saw this nice graphic which classifies which STL container would suit based on different requirements of data such as:
-- Fixed Size Vs Variable size
-- Data of same tyme Vs different type
-- ...
3
votes
4answers
553 views
C++ How to create a heterogeneous container
I need to store a series of data-points in the form of (name, value), where the value could take different types.
I am trying to use a class template for each data-point. Then for each data-point I ...
2
votes
1answer
69 views
ANTLR3 Hetero nodes are not created
I am trying to create a heterogeneous tree based on a sample provided here: http://www.antlr.org/wiki/display/ANTLR3/Tree+construction#Treeconstruction-Heterogeneoustreenodes
I have created a grammar ...
2
votes
3answers
90 views
sychronizing two heterogeneous databases
I have 2 heterogeneous databases.
One in mysql and one in ms sql.
I want to keep them in sync.
There will be flow of data periodically and information flow will be both ways
Anyone got any ...
1
vote
1answer
119 views
Extend ANTLR3 AST's
With ANTLR2, you could define something like this in grammar definition file:
options
{
language = "CSharp";
namespace = "Extended.Tokens";
}
tokens {
...
1
vote
1answer
551 views
Rendering a Heterogeneous Collection of View Models in Silverlight 2
I have a hierarchy of view models representing formatted content:
public abstract class ContentPartViewModel : ViewModel
{
}
public class TextContentPartViewModel : ContentPartViewModel
{
public ...
0
votes
1answer
23 views
Interworking MPI between Windows and Linux
I have several Windows box and Linux box interconnected with Infiniband, and I need to run MPI jobs in both environment, does anyone know what's the best way to interwork them ?
Currently, I am ...
0
votes
4answers
148 views
Serial CPU vs GPU code
I'm writing a theoretical assignment of the possibilities in heterogeneous computing.
I need to compare the effectiveness of a single thread (non-parallelizable) executed in serial manner on either ...
0
votes
1answer
26 views
How to make an OLE heterogeneous join between MS Access Db and Pervasive SQL 2000i Db
I would like to use an OleDbDataReader and a select statement similar to below:
I am using C# 4.0 and .NET 4.0:
Database1 = MS access
Database2 = Pervasive SQL 2000i
SELECT db1.Field1, db2.Field2
...
0
votes
2answers
86 views
Using Oracle Heterogenous services to access sql server database table via ODBC
I have created a dblink 'POC_HS' from oracle to sql (implemented heterogeneous services) and I am able to successfully pull out data from the default database that the DSN(for sql server) is connected ...
0
votes
1answer
172 views
ANTLR: Heterogeneous AST and imaginary tokens
it's my first question here :)
I'd like to build an heterogeneous AST with ANTLR for a simple grammar. There are different Interfaces to represent the AST nodes, e. g. IInfiExp, IVariableDecl. ANTLR ...
0
votes
2answers
1k views
SVN:ignore how-to and on what?
It seems to me that adding the property svn:ignore on files like .classpath would be a good idea. I use both Windows (work, ugh) and Linux development environments and every time I sync with the ...