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
[email protected]
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com
This email sent to [email protected]