summaryrefslogtreecommitdiff
path: root/nlpsolver
AgeCommit message (Collapse)AuthorFilesLines
2014-11-12java: convert fields to local variables where possibleNoel Grandin7-68/+40
found by PMD Change-Id: I05b45382b8fb1b734657ce9421a20e6ef6fbe542 Reviewed-on: https://gerrit.libreoffice.org/12376 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2014-11-12java: reduce excessive code indentation levelsNoel Grandin1-56/+58
by using early return in some methods Change-Id: I3611c8c89b3a94ef7e1772d178acf065fd7fcdc7 Reviewed-on: https://gerrit.libreoffice.org/12374 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-10-17java: final fields that can be staticNoel Grandin1-1/+1
Change-Id: I8c06be7bc0b8a38c662209f0de72a00550e25447
2014-10-16java: always use braces for while loopsNoel Grandin1-1/+2
Change-Id: Iff896b0cace8b8305528b3b0140004ea856169ce
2014-10-13nlpsolver: ensure that the stream is cleaned up before the method returnsRobert Antoni Buj i Gelonch1-9/+20
Change-Id: I081194d802bd835285bdc37fbef55f229f1185dc Reviewed-on: https://gerrit.libreoffice.org/11940 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-09-02nlpsolver: fix javadoc error: bad use of '>'rbuj1-3/+4
Change-Id: Ibfaeef155982ce6eeefe8ef51eea9c2bddb12c46 Reviewed-on: https://gerrit.libreoffice.org/11244 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-08-20remove more unnecessary constructor declarationsNoel Grandin1-2/+0
Change-Id: Ie5a243006b112c2e6daf12992f3dba8baf12748d
2014-08-20java: remove unnecessary constructor declarationsNoel Grandin1-5/+0
in the absence of any other constructors, the compiler will automatically generate a public no-arg constructor Change-Id: I70eca507cd8e16e33580b3398d41d70690bc2909
2014-08-20java: remove modifiers implied by the contextNoel Grandin6-22/+22
found by PMD Change-Id: I04cbf986ddbcffff987784f381b8a9f52f1b3f31
2014-08-19java: use 'Integer.valueOf' instead of 'new Integer'Noel Grandin2-5/+5
Change-Id: Ia8befb8d69914ce971174fc5f2ffc0e2f506a940
2014-08-19java: use Boolean.valueOf instead of instantiating Boolean objectsNoel Grandin3-3/+3
Change-Id: Ie41d6b0170a035a694dd270c311a137fd1810e74
2014-08-19java: remove unused methodsNoel Grandin4-115/+0
Change-Id: Ibb905e6f3e7d92a0e558f1f6562e5b472cd2717b
2014-08-14java: remove unused importsNoel Grandin1-1/+0
Change-Id: Ic60b30141fd1dc61acfb97b811aec680a2ab9c22
2014-08-14java: remove commented out codeNoel Grandin2-6/+0
Change-Id: I05c907a38b562231e968c17f14e09ef80e0a6ed1
2014-08-13remove dead java constantsNoel Grandin1-1/+0
found by UCDetector Change-Id: I1f8f5ba4f3ab1a1ef134dd0988f913dab7501351
2014-08-13make some java fields privateNoel Grandin1-1/+1
found by UCDetector Change-Id: Ib4cf18be134c3177cb123191e963bb43b7e6de93
2014-08-13java: remove dead methodsNoel Grandin11-177/+23
found by UCDetector Change-Id: I219caa8e680dba5a395541a778df6144841c4dde
2014-08-13fix makefileNoel Grandin1-1/+0
after my commit cc6bd12 "java: remove unused enum values" Change-Id: I9f2f151c0c9a40f39fc235fa65b8324b9cb40027
2014-08-13java: remove unused enum valuesNoel Grandin3-50/+1
found by UCDetector Change-Id: Ic07be7e34204b5d838a722e1ce6038506a771144
2014-08-13java: remove unused fieldsNoel Grandin3-26/+24
found by UCDetector Change-Id: I4a7c56a9918054c23469de5680658e7b501f0165
2014-08-13java: reduce scope, make some methods privateNoel Grandin10-24/+24
found by UCDetector Change-Id: Ib1425edde146193a65c242dc159b7e3fbf0e4a2e
2014-08-13java: reduce scope, make member classes privateNoel Grandin2-3/+3
found by UCDetector Change-Id: Ief32d078090102b14b60b35fc36542f8d4fb252b
2014-08-13java: reduce scope, make fields privateNoel Grandin11-54/+54
found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6
2014-08-13java: reduce scope, make constructors privateNoel Grandin3-5/+5
found by UCDetector Change-Id: If05277fd2fe77ceabb4c7c87aeb8569e3406102d
2014-08-12java: reduce scope, make constants privateNoel Grandin1-1/+1
found by UCDetector Change-Id: Ide9975e361ed17ac8cdcbe67ba74c563a9392d57
2014-08-12java: fix broken javadoc tagsNoel Grandin1-1/+1
Change-Id: I43d25ba49b758739ee8dc891b0db3e527004ec8b
2014-08-12java: add @Override annotation to overriding methodsNoel Grandin3-0/+10
Change-Id: I086964c6f6ce52c60c52b6dbc445d3c21d22c80a
2014-08-08java: remove exceptions from throws clauses that are notNoel Grandin1-1/+1
.. actually thrown Change-Id: Ia326ac7f82e11b948ed0f34e20908a96e7adcd10
2014-08-08java: remove unnecessary semi-colonsNoel Grandin1-1/+1
Change-Id: Ibeeefc6e6ee8f7bed97a02f569f239ff035d38c4
2014-08-07nlpsolver: Use System.arraycopyrbuj2-6/+2
Change-Id: I2550bf0799bd5ebc7f6ff299752fa90b7a31674d Reviewed-on: https://gerrit.libreoffice.org/10806 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2014-08-07nlpsolver: Number parsingrbuj1-2/+2
Change-Id: I37a83b8e8c0f084ae175be5a5c58fc6b852e23a1 Reviewed-on: https://gerrit.libreoffice.org/10807 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2014-08-07convert EvolutionarySolver source to unix LFNoel Grandin15-964/+964
so I dont keep getting problems when moving patches between Windows and Linux Change-Id: Ia2323ecb388bf5996279686e1bd2b1676c5ae213
2014-08-05java: remove commented out codeNoel Grandin2-33/+0
Change-Id: I44e2043e5da23bc9421c03e550ef1d8b7ebaad36
2014-08-05java: remove some unused fields in the ODK examplesNoel Grandin1-1/+0
Change-Id: Ic6b4f18aefba6603af51d17d061e3f821e95261f
2014-08-04java: remove some unused fields in the ODK examplesNoel Grandin1-2/+1
Change-Id: Ic6b4f18aefba6603af51d17d061e3f821e95261f
2014-05-09'!= false' is redundant, and confusing - kill it.Jan Holesovsky1-2/+2
Change-Id: I1a52b9ce7b590e8cf274a2daaa1c55cfc1efe48b
2014-04-27fdo#78004 fix string formattingAlex Gulyás1-1/+1
Added missing 's' Change-Id: I7570d86d65ebcffc547b06ab9c19843de0b90436 Reviewed-on: https://gerrit.libreoffice.org/9181 Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2014-02-26Remove trailing whitespace from nlpsolverAlexander Wilms11-54/+54
Change-Id: I8ee2aff2c18adaf5582ed6eeb174e88313d8c8a2 Reviewed-on: https://gerrit.libreoffice.org/8283 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2014-01-08Some ConfigurationProvider -> theDefaultProvider simplificationsStephan Bergmann1-3/+3
Change-Id: I7c25cd94f8a1ca339f7423c26f21f13c7a68906d
2013-11-04gbuild: fix gb_Extension_use_default_descriptionMichael Stahl1-1/+1
Passing a target local variable like $(LOCATION) to gb_Extension_add_file does not result in an actual dependency on the file. Change-Id: Ide77ab81f19877267056bf8e50d69c9cfedcda79
2013-10-25stop looking for Jar files in solverMichael Stahl1-2/+2
Change-Id: I4d2a93fa7395354fbf2893df9e254ab39fa365af
2013-08-19Rename SOLAR_JAVA to ENABLE_JAVA and HAVE_FEATURE_JAVATor Lillqvist1-1/+1
Change-Id: Ib451bdb3c1c2ca42347abfde44651d5cf5eef4f3
2013-06-03re-base on ALv2 code. Includes:Michael Meeks3-63/+36
Patches contributed by Mathias Bauer gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 http://svn.apache.org/viewvc?view=revision&revision=1397337 http://svn.apache.org/viewvc?view=revision&revision=1397315 http://svn.apache.org/viewvc?view=revision&revision=1396797 Patches contributed by Andre Fischer Fixed getcsym.awk to handle #-comments that contain special regexp chars. http://svn.apache.org/viewvc?view=revision&revision=1230971 118778: Added ADDITIONAL_REPOSITORIES environment variable and its automatic setup in configure. http://svn.apache.org/viewvc?view=revision&revision=1232004 118160: Added external CoinMP library. http://svn.apache.org/viewvc?view=revision&revision=1233909 Patches contributed by Herbert Duerr #i119168# use generic LICENSE file for langpacks and sdks http://svn.apache.org/viewvc?view=revision&revision=1310178 macosxotoolhelper: need to quote perl regexp if it may contain regexp metachars http://svn.apache.org/viewvc?view=revision&revision=1183367 allow gbuild with empty sysroot on linux http://svn.apache.org/viewvc?view=revision&revision=1179186 Patches contributed by Ingo Schmidt native373: #164472# improvements for msi database http://svn.apache.org/viewvc?view=revision&revision=1167540 http://svn.apache.org/viewvc?view=revision&revision=1167539 Patches contributed by Jurgen Schmidt adapt setup package scripts to handle special DS_Store file for developer snapshot builds http://svn.apache.org/viewvc?view=revision&revision=1232430 imported patch extensions_i117681.patch http://svn.apache.org/viewvc?view=revision&revision=1172102 Patches contributed by Michael Stahl gbuild: RepositoryFixes.mk should be optional http://svn.apache.org/viewvc?view=revision&revision=1166123 xslt filter: remove the FLA horror wordml import filter: replace FLA usage with plain XSLT http://svn.apache.org/viewvc?view=revision&revision=1363727 Patch contributed by Oliver-Rainer Wittmann i#88652: applied patch, remove unicows deps http://svn.apache.org/viewvc?view=revision&revision=1177585 Remove lots of OS2 conditionals, re-extract Rhino Java, unwind cppunit pieces, cleanup Mac image bits, remove coin-mp and re-package lpsolve, Oxygen & Crystal, fixup qstart bits, expand MPLv2 subset checking. Change-Id: Iad5c8a76399620b892671633c0d8c29996db3564
2013-05-15Spelling "separate" (etc) correctly is hardTor Lillqvist1-2/+2
2013-05-06Java cleanup, close file handles when done with themNoel Grandin1-0/+1
Change-Id: I79e6e0b8f53ae6f232c34aa8e833853d2ec24cf0
2013-05-06Java cleanup, Convert Vector to ArrayListNoel Grandin1-7/+8
Change-Id: I323a6625f93347e69f3114fc10cb04dc759a539f
2013-05-06remove some unnecessary castsNoel Grandin1-5/+4
Change-Id: I63b0ce257b40caa53aef337e953ce8d07862d292
2013-04-30Move to MPLv2 license headers, with ESC decision and author's permission.Michael Meeks2-46/+9
2013-04-26Java cleanup, remove unused importsNoel Grandin1-2/+0
Change-Id: I697017f196a7f7e5684011ae23941e54051c45dd
2013-04-26Java cleanup, use genericsNoel Grandin2-284/+282
Change-Id: I164e0f8386558641497258cc0a1d731e81a51c15