Tips for code porting to MC

2002-10-29 Thread xbury . cs
Hi Guys, Im porting a rather large neural network (NN) program written in C++ to Metacard to do some stats... Im looking for tips regarding porting variable redirection (pointers and pointers to pointers) and c-style struct variables. The key to porting these is speed as NN require speed and

Re: Tips for code porting to MC

2002-10-29 Thread Dar Scott
On Tuesday, October 29, 2002, at 08:18 AM, [EMAIL PROTECTED] wrote: Im looking for tips regarding porting variable redirection (pointers and pointers to pointers) and c-style struct variables. I wouldn't ignore arrays, but I have been considering substructure in strings. MC stings are byte

Re: Tips for code porting to MC

2002-10-29 Thread Pierre Sahores
[EMAIL PROTECTED] wrote: Hi Guys, Im porting a rather large neural network (NN) program written in C++ to Metacard to do some stats... Im looking for tips regarding porting variable redirection (pointers and pointers to pointers) and c-style struct variables. The key to porting these