My OS X Foundation tool declares several 2-D and/or 3-D matrices, e.g.,

vector<vector<double>> v2;

which I resize on the fly.

The app works fine when called from Terminal but, within Xcode, it usually 
hangs at the point where the “inside” vectors are being resized.  The following 
is for 1-based 2-D matrices:

      case 2:
         type = mat2; Ndim = 2; length = sz1 + 1; length2 = sz2 + 1;
         dataLength = sz1*sz2 + 1;
         v2.resize(length);
         for (c = 0;c <= length;c++)
            v2[c].resize(length2);
         break;

I have not encountered this before.  Is it a known problem?

Thanks for any help.
 
--
Michael McLaughlin
mmclaughl...@cox.net





 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list      (Xcode-users@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to