- 30 Mar, 2010 1 commit
-
-
Mark Olesen authored
-
- 29 Mar, 2010 1 commit
-
-
Mark Olesen authored
-
- 04 Mar, 2010 1 commit
-
-
mattijs authored
Only in PstreamBuffers mode. This makes sure that data from other processors already handled gets deleted.
-
- 19 Feb, 2010 1 commit
-
-
mattijs authored
So now we can read multiple times (using UIPstream) from PstreamBuffers PstreamBuffers pBufs UIPstream str1(procI, pBufs); str1>> .. UIPstream str2(procI, pBufs); str1>> ..
-
- 15 Jan, 2010 1 commit
-
-
Andrew Heather authored
-
- 21 Dec, 2009 1 commit
-
-
Mark Olesen authored
Previously Fstreams had stdStream() as a public member and the other streams had stream() as a protected member. All serial streams now have public method stdStream() and the stream() method has been eliminated. This is not only more consistent, but also avoids confusion (for the programmer, not the compiler) with the ITstream::stream() method.
-
- 15 Dec, 2009 2 commits
-
-
Mark Olesen authored
- Use (const UList<token>&) instead of (const List<token>&) - Add (const Xfer< List<token> >&) constructor.
-
Mark Olesen authored
- The lineNumber of token::undefinedToken was being changed instead of just the lineNumber of the return token. - use List::first() and List::last() methods as well
-
- 12 Dec, 2009 1 commit
-
-
Mark Olesen authored
-
- 11 Dec, 2009 2 commits
-
-
Mark Olesen authored
-
Mark Olesen authored
-
- 07 Dec, 2009 1 commit
-
-
Mark Olesen authored
allow switch/bool values for writeCompression in system/controlDict - eg, writeCompression false; or writeCompression uncompressed; writeCompression true; or writeCompression compressed; improves consistency with other controlDict parameters
-
- 04 Dec, 2009 2 commits
-
-
Mark Olesen authored
-
Mark Olesen authored
-
- 22 Nov, 2009 1 commit
-
-
mattijs authored
-
- 21 Nov, 2009 1 commit
-
-
mattijs authored
-
- 27 Oct, 2009 1 commit
-
-
mattijs authored
-
- 26 Oct, 2009 2 commits
- 02 Oct, 2009 1 commit
-
-
mattijs authored
-
- 01 Oct, 2009 1 commit
-
-
mattijs authored
-
- 25 Aug, 2009 1 commit
-
-
mattijs authored
-
- 12 Aug, 2009 1 commit
-
-
Mark Olesen authored
-
- 11 Aug, 2009 3 commits
-
-
mattijs authored
-
Mark Olesen authored
-
Mark Olesen authored
- following Andy's idea to return values as label whenever possible eg, 1.2e6 -> 1200000 but left it commented out - avoid buffer overflow in ISstream::read(word&). Is the 'if (fail())' check itself actually in the correct place?? - other minor cosmetic changes
-
- 10 Aug, 2009 2 commits
-
-
Mark Olesen authored
- since atof is just a call to strtod (in glibc at least), revert to the original character collection, convert the number via strtod/strtol and check the end pointer so see if everything was converted. Flag both bad formats (eg, ".e") and trailing junk (eg, "1.e4e") as a tokenize error. These were previously silently ignored. - simple (same weight as before), but with trivial error checking. Retain buffer overflow check.
-
Mark Olesen authored
-
- 09 Aug, 2009 3 commits
-
-
Mark Olesen authored
- avoid other degenerate sequences from being treated as a scalar eg, '1-e', '1e+', '1e.2'
-
Mark Olesen authored
- for alphanumeric sequences (optionally with [-+.]) that don't look like a float or int -> return as a word This means that '0patch' now looks like a <word> (not <label>) and '1.end' looks like a <word> and not <scalar> Something like '1-e' still does get treated as a bad <scalar> though
-
Mark Olesen authored
- require a digit somewhere. This traps '.' or '.+E' type of sequences instead of returning them as 0 - avoid buffer overruns on really long sequences - should we be considering strtod() as an alternative to atof() and checking the errno? The same might be true for using strtoul() or strtol() instead of atol()
-
- 06 Aug, 2009 1 commit
-
-
henry authored
-
- 23 Jun, 2009 1 commit
-
-
henry authored
-
- 22 Jun, 2009 1 commit
-
-
Henry Weller authored
-
- 05 May, 2009 1 commit
-
-
henry authored
-
- 28 Apr, 2009 1 commit
-
-
Mark Olesen authored
-
- 08 Apr, 2009 1 commit
-
-
henry authored
-
- 06 Mar, 2009 1 commit
-
-
Mark Olesen authored
- objectRegistry gets a rename() that also adjusts the dbDir - cloud reworked to use static variables subInstance and defaultName. This avoids writing "lagrangian" everywhere string fixes - avoid masking of std::string::replace in string.H - avoid old strstream in PV3FoamReader
-
- 05 Mar, 2009 1 commit
-
-
Mark Olesen authored
- regIOobject: don't re-register an unregister object on rename/assignment - Hasher: split-off HasherInt with uint32_t specializations - IOobject: writeBanner/writeDivider return Stream for easier chaining. ... also dropped some namespace bracketing while I was at it.
-
- 27 Feb, 2009 1 commit
-
-
Mark Olesen authored
- Hash returns unsigned - FixedList templated on unsigned int - include uLabel.H in UList, HashTable etc. so the output function is know throughout
-