Advertisement
logicmoo

Stems

Oct 22nd, 2018
621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Prolog 24.61 KB | None | 0 0
  1. word_overlap(W1,W2):- atom_contains(W1,W2);atom_contains(W2,W1).
  2. longer(W1,W2):- atom_length(W1,L1),atom_length(W2,L2),(L1==L2->W1@>W2;L1<L2).
  3. slonger(W1,W2,(=)):-W1==W2,!.
  4. slonger(W1,W2,(>)):-longer(W1,W2),!.
  5. slonger(_W1,_W2,(<)).
  6. maybe_stem(W1,W2):- word_overlap(W1,W2),!.
  7. maybe_stem(W1,W2):- first_half(W1,L1),first_half(W2,L2), word_overlap(L1,L2).
  8. first_half(S,S2):- atom_length(S,L),L2 is div(L,2), L2>3, sub_atom(S,L2,_,_,S2),!.
  9. first_half(S,S).
  10. % imports der/4 and s/6 from wordnet db
  11. candidate_creation(W1,W2):- der(ID1,SN1,ID2,SN2),s(ID1,SN1,W1,_POS1,_X1,_Y1),s(ID2,SN2,W2,_POS2,_X2,_Y2).
  12. der_stem(O1,O2):- candidate_creation(W1,W2),maybe_stem(W1,W2),W1\==W2,
  13.   (longer(W1,W2)->(O1:O2=W1:W2);(O2:O1=W1:W2)).
  14. tellstems:- tell(tellstems),forall(no_repeats(der_stem(O1,O2)),format('~N~q.~n',[my_stems(O1,O2)])),told.
  15.  
  16.  
  17. /*
  18.  
  19. my_stems('civil liberty','civil-libertarian').
  20. my_stems('co-occurrent','co-occurrence').
  21. my_stems('hair style',hairstylist).
  22. my_stems('left-handed','left-handedness').
  23. my_stems('Modern',modernness).
  24. my_stems('right-handed','right-handedness').
  25. my_stems('three-dimensional','three-dimensionality').
  26. my_stems('two-dimensional','two-dimensionality').
  27. my_stems('up-to-date','up-to-dateness').
  28. my_stems(abound,abundance).
  29. my_stems(abrupt,abruptness).
  30. my_stems(abstemious,abstemiousness).
  31. my_stems(abundant,abundance).
  32. my_stems(accelerate,acceleration).
  33. my_stems(adjacent,adjacency).
  34. my_stems(admit,admittance).
  35. my_stems(adnexa,adnexal).
  36. my_stems(advantage,advantageous).
  37. my_stems(advantageous,advantageousness).
  38. my_stems(advantageous,profitableness).
  39. my_stems(advisable,advisability).
  40. my_stems(affirmative,affirmativeness).
  41. my_stems(aimless,aimlessness).
  42. my_stems(airy,airiness).
  43. my_stems(align,alignment).
  44. my_stems(altitude,altitudinal).
  45. my_stems(altitude,altitudinous).
  46. my_stems(ambidextrous,ambidexterity).
  47. my_stems(ambidextrous,ambidextrousness).
  48. my_stems(ample,ampleness).
  49. my_stems(ampulla,ampullar).
  50. my_stems(ampulla,ampullary).
  51. my_stems(analytic,analyticity).
  52. my_stems(anastomotic,anastomosis).
  53. my_stems(anatomy,anatomic).
  54. my_stems(anatomy,anatomical).
  55. my_stems(anatomy,anatomist).
  56. my_stems(angular,angularity).
  57. my_stems(antecede,antecedence).
  58. my_stems(antecede,antecedency).
  59. my_stems(antecedent,antecedence).
  60. my_stems(antecedent,antecedency).
  61. my_stems(anterior,anteriority).
  62. my_stems(area,areal).
  63. my_stems(arrange,arrangement).
  64. my_stems(arthromere,arthromeric).
  65. my_stems(assailable,assailability).
  66. my_stems(assertive,assertiveness).
  67. my_stems(assess,assessment).
  68. my_stems(astringent,astringency).
  69. my_stems(asymmetry,asymmetric).
  70. my_stems(asymmetry,asymmetrical).
  71. my_stems(attenuate,attenuation).
  72. my_stems(attitude,attitudinise).
  73. my_stems(auspicious,auspiciousness).
  74. my_stems(authorise,authorisation).
  75. my_stems(authorize,authorization).
  76. my_stems(awkward,awkwardness).
  77. my_stems(bad,badness).
  78. my_stems(barren,barrenness).
  79. my_stems(beam,beamy).
  80. my_stems(benefit,beneficial).
  81. my_stems(big,bigness).
  82. my_stems(bilateral,bilaterality).
  83. my_stems(boring,boringness).
  84. my_stems(bottomless,bottomlessness).
  85. my_stems(bounded,boundedness).
  86. my_stems(boundless,boundlessness).
  87. my_stems(bountiful,bountifulness).
  88. my_stems(brachycephaly,brachycephalic).
  89. my_stems(breakable,breakability).
  90. my_stems(bregma,bregmatic).
  91. my_stems(brief,briefness).
  92. my_stems(broad,broadness).
  93. my_stems(bulb,bulbous).
  94. my_stems(bulgy,bulginess).
  95. my_stems(bulk,bulky).
  96. my_stems(bulky,bulkiness).
  97. my_stems(bumptious,bumptiousness).
  98. my_stems(cadaver,cadaveric).
  99. my_stems(cadaver,cadaverous).
  100. my_stems(caliber,calibrate).
  101. my_stems(canal,canalize).
  102. my_stems(canaliculus,canalicular).
  103. my_stems(capable,capability).
  104. my_stems(capable,capableness).
  105. my_stems(capacious,capaciousness).
  106. my_stems(capacity,capacitate).
  107. my_stems(catch,catchy).
  108. my_stems(cauda,caudal).
  109. my_stems(ceaseless,ceaselessness).
  110. my_stems(central,centrality).
  111. my_stems(changeless,changelessness).
  112. my_stems(channel,channelize).
  113. my_stems(cheap,cheapness).
  114. my_stems(chiasm,chiasmal).
  115. my_stems(chiasm,chiasmatic).
  116. my_stems(chiasm,chiasmic).
  117. my_stems(circular,circularity).
  118. my_stems(clear,clearance).
  119. my_stems(close,closeness).
  120. my_stems(cocky,cockiness).
  121. my_stems(coif,coiffure).
  122. my_stems(coincide,coincidence).
  123. my_stems(coincident,coincidence).
  124. my_stems(comical,comicality).
  125. my_stems(commodious,commodiousness).
  126. my_stems(competent,competence).
  127. my_stems(competent,competency).
  128. my_stems(complement,complemental).
  129. my_stems(complement,complementary).
  130. my_stems(concave,concaveness).
  131. my_stems(concave,concavity).
  132. my_stems(concentrate,concentration).
  133. my_stems(concentric,concentricity).
  134. my_stems(concomitant,concomitance).
  135. my_stems(concur,concurrence).
  136. my_stems(concurrent,concurrence).
  137. my_stems(consequence,consequential).
  138. my_stems(constructive,constructiveness).
  139. my_stems(contemporaneous,contemporaneity).
  140. my_stems(contemporaneous,contemporaneousness).
  141. my_stems(contiguous,contiguity).
  142. my_stems(contiguous,contiguousness).
  143. my_stems(continue,continuation).
  144. my_stems(continuous,continuity).
  145. my_stems(continuous,continuousness).
  146. my_stems(contractile,contractility).
  147. my_stems(contrast,contrasty).
  148. my_stems(convex,convexity).
  149. my_stems(convex,convexness).
  150. my_stems(copious,copiousness).
  151. my_stems(cost,costly).
  152. my_stems(costly,costliness).
  153. my_stems(countless,countlessness).
  154. my_stems(cover,coverage).
  155. my_stems(crooked,crookedness).
  156. my_stems(cubic,cubicity).
  157. my_stems(curl,curly).
  158. my_stems(curly,curliness).
  159. my_stems(current,currency).
  160. my_stems(current,currentness).
  161. my_stems(curtail,curtailment).
  162. my_stems(curve,curvature).
  163. my_stems(curve,curvey).
  164. my_stems(cutis,cutaneal).
  165. my_stems(cylindrical,cylindricality).
  166. my_stems(cylindrical,cylindricalness).
  167. my_stems(dead,deadness).
  168. my_stems(dear,dearness).
  169. my_stems(decelerate,deceleration).
  170. my_stems(decussate,decussation).
  171. my_stems(deep,deepness).
  172. my_stems(defenceless,defencelessness).
  173. my_stems(defenseless,defenselessness).
  174. my_stems(defensible,defensibility).
  175. my_stems(deficient,deficiency).
  176. my_stems(deliberate,deliberateness).
  177. my_stems(dense,denseness).
  178. my_stems(desirable,desirability).
  179. my_stems(desirable,desirableness).
  180. my_stems(destructible,destructibility).
  181. my_stems(destructive,destructiveness).
  182. my_stems(deterge,detergence).
  183. my_stems(deterge,detergency).
  184. my_stems(detergent,detergence).
  185. my_stems(detergent,detergency).
  186. my_stems(dextral,dextrality).
  187. my_stems(diameter,diametral).
  188. my_stems(diameter,diametric).
  189. my_stems(diameter,diametrical).
  190. my_stems(diffuse,diffuseness).
  191. my_stems(dimensional,dimensionality).
  192. my_stems(diminutive,diminutiveness).
  193. my_stems(directional,directionality).
  194. my_stems(directive,directiveness).
  195. my_stems(directive,directivity).
  196. my_stems(disadvantage,disadvantageous).
  197. my_stems(discretion,discretionary).
  198. my_stems(dispensable,dispensability).
  199. my_stems(dispensable,dispensableness).
  200. my_stems(disseminate,dissemination).
  201. my_stems(distant,distance).
  202. my_stems(domestic,domesticity).
  203. my_stems(dominate,dominance).
  204. my_stems(down,downy).
  205. my_stems(dreary,dreariness).
  206. my_stems(dull,dullness).
  207. my_stems(durable,durability).
  208. my_stems(dwarfish,dwarfishness).
  209. my_stems(early,earliness).
  210. my_stems(eccentric,eccentricity).
  211. my_stems(effective,effectiveness).
  212. my_stems(effective,effectivity).
  213. my_stems(effectual,effectuality).
  214. my_stems(effectual,effectualness).
  215. my_stems(efficacious,efficaciousness).
  216. my_stems(efficacy,efficacious).
  217. my_stems(elevate,elevation).
  218. my_stems(elliptic,ellipticity).
  219. my_stems(elongate,elongation).
  220. my_stems(empty,emptiness).
  221. my_stems(endless,endlessness).
  222. my_stems(endothelium,endothelial).
  223. my_stems(enduring,enduringness).
  224. my_stems(enervate,enervation).
  225. my_stems(enfranchise,enfranchisement).
  226. my_stems(enjoy,enjoyment).
  227. my_stems(enormous,enormity).
  228. my_stems(enormous,enormousness).
  229. my_stems(entitle,entitlement).
  230. my_stems(ephemeral,ephemerality).
  231. my_stems(ephemeral,ephemeralness).
  232. my_stems(epidermis,epidermal).
  233. my_stems(epidermis,epidermic).
  234. my_stems(epithelium,epithelial).
  235. my_stems(erect,erectness).
  236. my_stems(essential,essentiality).
  237. my_stems(essential,essentialness).
  238. my_stems(everlasting,everlastingness).
  239. my_stems(evert,eversion).
  240. my_stems(exceed,exceedance).
  241. my_stems(excessive,excessiveness).
  242. my_stems(executable,executability).
  243. my_stems(exiguous,exiguity).
  244. my_stems(exorbitant,exorbitance).
  245. my_stems(expedient,expedience).
  246. my_stems(expedient,expediency).
  247. my_stems(expedition,expeditious).
  248. my_stems(expeditious,expeditiousness).
  249. my_stems(expensive,expensiveness).
  250. my_stems(expose,exposure).
  251. my_stems(extensive,extensiveness).
  252. my_stems(external,externality).
  253. my_stems(extravagant,extravagance).
  254. my_stems(far,farawayness).
  255. my_stems(far,farness).
  256. my_stems(fast,fastness).
  257. my_stems(favorable,favorableness).
  258. my_stems(favourable,favourableness).
  259. my_stems(feasible,feasibility).
  260. my_stems(feasible,feasibleness).
  261. my_stems(feckless,fecklessness).
  262. my_stems(fertile,fertility).
  263. my_stems(few,fewness).
  264. my_stems(fine,fineness).
  265. my_stems(finite,finiteness).
  266. my_stems(fit,fitness).
  267. my_stems(flat,flatness).
  268. my_stems(fleet,fleetness).
  269. my_stems(fleeting,fleetingness).
  270. my_stems(flimsy,flimsiness).
  271. my_stems(forward,forwardness).
  272. my_stems(fragile,fragility).
  273. my_stems(frangible,frangibility).
  274. my_stems(frangible,frangibleness).
  275. my_stems(frigid,frigidity).
  276. my_stems(frigid,frigidness).
  277. my_stems(fruitful,fruitfulness).
  278. my_stems(fruitless,fruitlessness).
  279. my_stems(fugacious,fugaciousness).
  280. my_stems(fugacity,fugacious).
  281. my_stems(full,fullness).
  282. my_stems(functional,functionality).
  283. my_stems(futile,futility).
  284. my_stems(future,futurity).
  285. my_stems(fuzz,fuzzy).
  286. my_stems(gentle,gentleness).
  287. my_stems(germ,germinate).
  288. my_stems(glabella,glabellar).
  289. my_stems(glib,glibness).
  290. my_stems(globose,globosity).
  291. my_stems(globular,globularness).
  292. my_stems(glomerulus,glomerular).
  293. my_stems(good,goodness).
  294. my_stems(gradual,graduality).
  295. my_stems(gradual,gradualness).
  296. my_stems(grand,grandness).
  297. my_stems(great,greatness).
  298. my_stems(hair,hairy).
  299. my_stems(handed,handedness).
  300. my_stems(harmful,harmfulness).
  301. my_stems(hasty,hastiness).
  302. my_stems(heavy,heaviness).
  303. my_stems(helpful,helpfulness).
  304. my_stems(helpless,helplessness).
  305. my_stems(high,highness).
  306. my_stems(historical,historicalness).
  307. my_stems(horizontal,horizontality).
  308. my_stems(humor,humorist).
  309. my_stems(humor,humorous).
  310. my_stems(humour,humourist).
  311. my_stems(humour,humourous).
  312. my_stems(hurried,hurriedness).
  313. my_stems(hydrophobic,hydrophobicity).
  314. my_stems(idealist,idealism).
  315. my_stems(idle,idleness).
  316. my_stems(illustrious,illustriousness).
  317. my_stems(immediate,immediateness).
  318. my_stems(immense,immenseness).
  319. my_stems(immense,immensity).
  320. my_stems(immoderate,immoderateness).
  321. my_stems(immortal,immortality).
  322. my_stems(imperishable,imperishability).
  323. my_stems(impermanent,impermanence).
  324. my_stems(impermanent,impermanency).
  325. my_stems(important,importance).
  326. my_stems(impotent,impotence).
  327. my_stems(impotent,impotency).
  328. my_stems(impracticable,impracticability).
  329. my_stems(impracticable,impracticableness).
  330. my_stems(impractical,impracticality).
  331. my_stems(impuissant,impuissance).
  332. my_stems(inadvisable,inadvisability).
  333. my_stems(inauspicious,inauspiciousness).
  334. my_stems(incapable,incapability).
  335. my_stems(incessant,incessancy).
  336. my_stems(incessant,incessantness).
  337. my_stems(incisive,incisiveness).
  338. my_stems(incline,inclination).
  339. my_stems(incompetent,incompetence).
  340. my_stems(incompetent,incompetency).
  341. my_stems(inconsequent,inconsequence).
  342. my_stems(increment,incremental).
  343. my_stems(indestructible,indestructibility).
  344. my_stems(indispensable,indispensability).
  345. my_stems(indispensable,indispensableness).
  346. my_stems(ineffective,ineffectiveness).
  347. my_stems(ineffectual,ineffectuality).
  348. my_stems(ineffectual,ineffectualness).
  349. my_stems(inefficacious,inefficaciousness).
  350. my_stems(inessential,inessentiality).
  351. my_stems(inexpedient,inexpedience).
  352. my_stems(inexpedient,inexpediency).
  353. my_stems(inexpensive,inexpensiveness).
  354. my_stems(infeasible,infeasibility).
  355. my_stems(infinite,infiniteness).
  356. my_stems(influence,influential).
  357. my_stems(infrequent,infrequency).
  358. my_stems(injurious,injuriousness).
  359. my_stems(innervate,innervation).
  360. my_stems(innumerable,innumerableness).
  361. my_stems(inordinate,inordinateness).
  362. my_stems(inosculate,inosculation).
  363. my_stems(insidious,insidiousness).
  364. my_stems(insignificant,insignificance).
  365. my_stems(insipid,insipidness).
  366. my_stems(insoluble,insolubility).
  367. my_stems(instant,instancy).
  368. my_stems(instantaneous,instantaneousness).
  369. my_stems(instrumental,instrumentality).
  370. my_stems(insubstantial,insubstantiality).
  371. my_stems(insufficient,insufficiency).
  372. my_stems(integument,integumental).
  373. my_stems(integument,integumentary).
  374. my_stems(interesting,interestingness).
  375. my_stems(international,internationality).
  376. my_stems(internationalism,internationalistic).
  377. my_stems(interoperable,interoperability).
  378. my_stems(interstice,interstitial).
  379. my_stems(inutile,inutility).
  380. my_stems(invaluable,invaluableness).
  381. my_stems(inward,inwardness).
  382. my_stems(irregular,irregularity).
  383. my_stems(irresistible,irresistibility).
  384. my_stems(irresistible,irresistibleness).
  385. my_stems(isometry,isometric).
  386. my_stems(jejune,jejuneness).
  387. my_stems(jejune,jejunity).
  388. my_stems(large,extensiveness).
  389. my_stems(large,largeness).
  390. my_stems(lasting,lastingness).
  391. my_stems(late,lateness).
  392. my_stems(latitude,latitudinarian).
  393. my_stems(lavish,lavishness).
  394. my_stems(lean,leanness).
  395. my_stems(leisurely,leisureliness).
  396. my_stems(length,lengthy).
  397. my_stems(lengthy,lengthiness).
  398. my_stems(lentigo,lentiginous).
  399. my_stems(liable,liability).
  400. my_stems(limit,limitation).
  401. my_stems(limitless,limitlessness).
  402. my_stems(linear,linearity).
  403. my_stems(little,littleness).
  404. my_stems(lobular,lobularity).
  405. my_stems(lofty,loftiness).
  406. my_stems(long,longness).
  407. my_stems(lopsided,lopsidedness).
  408. my_stems(lord,lordship).
  409. my_stems(low,lowness).
  410. my_stems(lush,lushness).
  411. my_stems(luxuriant,luxuriance).
  412. my_stems(luxury,luxuriate).
  413. my_stems(luxury,luxurious).
  414. my_stems(macula,maculate).
  415. my_stems(magnify,magnitude).
  416. my_stems(major,majority).
  417. my_stems(marginal,marginality).
  418. my_stems(massive,massiveness).
  419. my_stems(maximum,maximise).
  420. my_stems(maximum,maximize).
  421. my_stems(meager,meagerness).
  422. my_stems(meagre,meagreness).
  423. my_stems(meaningful,meaningfulness).
  424. my_stems(measurable,measurability).
  425. my_stems(mindless,mindlessness).
  426. my_stems(minor,minority).
  427. my_stems(minute,minuteness).
  428. my_stems(misalign,misalignment).
  429. my_stems(misplace,misplacement).
  430. my_stems(moderate,moderateness).
  431. my_stems(moderate,moderation).
  432. my_stems(modern,modernity).
  433. my_stems(modern,modernness).
  434. my_stems(modernism,modernistic).
  435. my_stems(modest,modestness).
  436. my_stems(moment,momentous).
  437. my_stems(momentous,momentousness).
  438. my_stems(mortal,mortality).
  439. my_stems(much,muchness).
  440. my_stems(multiple,multiplicity).
  441. my_stems(multitudinous,multitudinousness).
  442. my_stems(narrow,narrowing).
  443. my_stems(narrow,narrowness).
  444. my_stems(near,nearness).
  445. my_stems(negative,negativeness).
  446. my_stems(negative,negativity).
  447. my_stems(negativist,negativism).
  448. my_stems(newsworthy,newsworthiness).
  449. my_stems(northern,northernness).
  450. my_stems(numerous,numerosity).
  451. my_stems(numerous,numerousness).
  452. my_stems(oblate,oblateness).
  453. my_stems(oblique,obliqueness).
  454. my_stems(oblong,oblongness).
  455. my_stems(open,opening).
  456. my_stems(open,openness).
  457. my_stems(optimism,optimistic).
  458. my_stems(optimist,optimism).
  459. my_stems(optimum,optimise).
  460. my_stems(optimum,optimize).
  461. my_stems(orientalist,orientalism).
  462. my_stems(orthogonal,orthogonality).
  463. my_stems(outrageous,outrageousness).
  464. my_stems(overabundant,overabundance).
  465. my_stems(overmuch,overmuchness).
  466. my_stems(paltry,paltriness).
  467. my_stems(past,pastness).
  468. my_stems(pelt,pelting).
  469. my_stems(penetrate,penetration).
  470. my_stems(perdurable,perdurability).
  471. my_stems(permanent,permanence).
  472. my_stems(permanent,permanency).
  473. my_stems(perpendicular,perpendicularity).
  474. my_stems(perpetual,perpetuity).
  475. my_stems(persistent,persistence).
  476. my_stems(person,personify).
  477. my_stems(persuasive,persuasiveness).
  478. my_stems(pessimism,pessimistic).
  479. my_stems(pessimist,pessimism).
  480. my_stems(petite,petiteness).
  481. my_stems(petty,pettiness).
  482. my_stems(place,placement).
  483. my_stems(plane,planeness).
  484. my_stems(plenteous,plenteousness).
  485. my_stems(plentiful,plentifulness).
  486. my_stems(plenty,plenteous).
  487. my_stems(plethora,plethoric).
  488. my_stems(poignant,poignancy).
  489. my_stems(pointed,pointedness).
  490. my_stems(pointless,pointlessness).
  491. my_stems(poison,poisonous).
  492. my_stems(ponderous,ponderousness).
  493. my_stems(poor,poorness).
  494. my_stems(pore,poriferous).
  495. my_stems(positive,positiveness).
  496. my_stems(positive,positivity).
  497. my_stems(posterior,posteriority).
  498. my_stems(posture,postural).
  499. my_stems(powerful,powerfulness).
  500. my_stems(powerless,powerlessness).
  501. my_stems(practicable,practicability).
  502. my_stems(practicable,practicableness).
  503. my_stems(practical,practicality).
  504. my_stems(pragmatic,pragmatism).
  505. my_stems(pragmatism,pragmatical).
  506. my_stems(pragmatist,pragmatism).
  507. my_stems(precede,precedence).
  508. my_stems(precede,precedency).
  509. my_stems(precedent,precedence).
  510. my_stems(precious,preciousness).
  511. my_stems(precipitant,precipitance).
  512. my_stems(precipitant,precipitancy).
  513. my_stems(precipitate,precipitateness).
  514. my_stems(precipitate,precipitation).
  515. my_stems(precipitous,precipitousness).
  516. my_stems(preempt,preemption).
  517. my_stems(preponderant,preponderance).
  518. my_stems(preponderate,preponderance).
  519. my_stems(present,presentness).
  520. my_stems(press,pressure).
  521. my_stems(prevail,prevalence).
  522. my_stems(price,pricey).
  523. my_stems(priceless,pricelessness).
  524. my_stems(prior,priority).
  525. my_stems(priority,prioritize).
  526. my_stems(probability,probabilistic).
  527. my_stems(probable,probability).
  528. my_stems(procrastinate,procrastination).
  529. my_stems(productive,productiveness).
  530. my_stems(productive,productivity).
  531. my_stems(proficient,proficiency).
  532. my_stems(profitable,profitability).
  533. my_stems(profitable,profitableness).
  534. my_stems(profound,profoundness).
  535. my_stems(profound,profundity).
  536. my_stems(profuse,profuseness).
  537. my_stems(prolong,prolongation).
  538. my_stems(prominent,prominence).
  539. my_stems(prompt,promptness).
  540. my_stems(propitious,propitiousness).
  541. my_stems(protract,protraction).
  542. my_stems(proximal,proximity).
  543. my_stems(puissant,puissance).
  544. my_stems(punctual,punctuality).
  545. my_stems(puny,puniness).
  546. my_stems(purposeful,purposefulness).
  547. my_stems(purposeless,aimlessness).
  548. my_stems(purposeless,purposelessness).
  549. my_stems(pushy,pushiness).
  550. my_stems(quantifiable,quantifiability).
  551. my_stems(quick,quickness).
  552. my_stems(ramify,ramification).
  553. my_stems(rank,rankness).
  554. my_stems(rapid,rapidity).
  555. my_stems(rapid,rapidness).
  556. my_stems(rare,rareness).
  557. my_stems(reasonable,reasonableness).
  558. my_stems(recent,recentness).
  559. my_stems(rectangular,rectangularity).
  560. my_stems(redundant,redundance).
  561. my_stems(redundant,redundancy).
  562. my_stems(regular,regularity).
  563. my_stems(relative,relativity).
  564. my_stems(relativity,relativistic).
  565. my_stems(remote,remoteness).
  566. my_stems(resistant,resistance).
  567. my_stems(resourceful,resourcefulness).
  568. my_stems(responsive,responsiveness).
  569. my_stems(retard,retardation).
  570. my_stems(rich,richness).
  571. my_stems(romantic,romanticism).
  572. my_stems(romanticist,romanticism).
  573. my_stems(roomy,roominess).
  574. my_stems(rotate,rotation).
  575. my_stems(rotund,rotundity).
  576. my_stems(rotund,rotundness).
  577. my_stems(round,roundness).
  578. my_stems(rounded,roundedness).
  579. my_stems(runty,runtiness).
  580. my_stems(scalable,scalability).
  581. my_stems(scant,scantness).
  582. my_stems(scanty,scantiness).
  583. my_stems(scarce,scarceness).
  584. my_stems(scarce,scarcity).
  585. my_stems(sciolism,sciolistic).
  586. my_stems(sciolist,sciolism).
  587. my_stems(seasonable,seasonableness).
  588. my_stems(selective,selectivity).
  589. my_stems(senseless,senselessness).
  590. my_stems(sensible,sensibleness).
  591. my_stems(sequence,sequential).
  592. my_stems(serviceable,serviceability).
  593. my_stems(serviceable,serviceableness).
  594. my_stems(shallow,shallowness).
  595. my_stems(shit,shitty).
  596. my_stems(shoddy,shoddiness).
  597. my_stems(short,shortness).
  598. my_stems(shrill,shrillness).
  599. my_stems(significant,significance).
  600. my_stems(simultaneous,simultaneity).
  601. my_stems(simultaneous,simultaneousness).
  602. my_stems(sinistral,sinistrality).
  603. my_stems(sizeable,sizeableness).
  604. my_stems(skew,skewness).
  605. my_stems(skin,skinny).
  606. my_stems(slender,slenderness).
  607. my_stems(slick,slickness).
  608. my_stems(slight,slightness).
  609. my_stems(slim,slimness).
  610. my_stems(slow,slowing).
  611. my_stems(slow,slowness).
  612. my_stems(sluggish,sluggishness).
  613. my_stems(small,smallness).
  614. my_stems(solarise,solarisation).
  615. my_stems(solarize,solarization).
  616. my_stems(soluble,solubility).
  617. my_stems(solvable,solvability).
  618. my_stems(sorry,sorriness).
  619. my_stems(sound,sounding).
  620. my_stems(sound,soundness).
  621. my_stems(southern,southernness).
  622. my_stems(spacious,spaciousness).
  623. my_stems(spare,spareness).
  624. my_stems(sparse,sparseness).
  625. my_stems(sparse,sparsity).
  626. my_stems(spatial,spatiality).
  627. my_stems(special,speciality).
  628. my_stems(spectrum,spectral).
  629. my_stems(speed,speedy).
  630. my_stems(speedy,speediness).
  631. my_stems(spheric,sphericity).
  632. my_stems(spherical,sphericalness).
  633. my_stems(sprawl,sprawling).
  634. my_stems(sprawl,sprawly).
  635. my_stems(square,squareness).
  636. my_stems(squat,squatness).
  637. my_stems(stark,starkness).
  638. my_stems(steep,steepness).
  639. my_stems(stoma,stomatal).
  640. my_stems(stoma,stomatous).
  641. my_stems(straight,straightness).
  642. my_stems(stubby,stubbiness).
  643. my_stems(stuffy,stuffiness).
  644. my_stems(stunted,stuntedness).
  645. my_stems(subsequent,subsequence).
  646. my_stems(subsequent,subsequentness).
  647. my_stems(succeed,succession).
  648. my_stems(successive,successiveness).
  649. my_stems(sudden,suddenness).
  650. my_stems(suffice,sufficiency).
  651. my_stems(sufficient,sufficiency).
  652. my_stems(suffrage,suffragette).
  653. my_stems(suffrage,suffragist).
  654. my_stems(sumptuous,sumptuosity).
  655. my_stems(sumptuous,sumptuousness).
  656. my_stems(superabundant,superabundance).
  657. my_stems(superficial,superficiality).
  658. my_stems(superfluous,superfluity).
  659. my_stems(superior,superiority).
  660. my_stems(supplement,supplemental).
  661. my_stems(supplement,supplementary).
  662. my_stems(supplement,supplementation).
  663. my_stems(swift,swiftness).
  664. my_stems(symmetrical,symmetricalness).
  665. my_stems(symmetry,symmetric).
  666. my_stems(symmetry,symmetrise).
  667. my_stems(symmetry,symmetrize).
  668. my_stems(tall,tallness).
  669. my_stems(tame,tameness).
  670. my_stems(tardy,tardiness).
  671. my_stems(tedious,tediousness).
  672. my_stems(teeming,teemingness).
  673. my_stems(temporary,temporariness).
  674. my_stems(tentacle,tentacular).
  675. my_stems(thick,thickness).
  676. my_stems(thin,thinness).
  677. my_stems(tight,tightness).
  678. my_stems(timely,timeliness).
  679. my_stems(tiny,tininess).
  680. my_stems(tiresome,tiresomeness).
  681. my_stems(title,titulary).
  682. my_stems(topography,topographic).
  683. my_stems(topography,topographical).
  684. my_stems(totipotent,totipotence).
  685. my_stems(totipotent,totipotency).
  686. my_stems(transient,transience).
  687. my_stems(transient,transiency).
  688. my_stems(transitory,transitoriness).
  689. my_stems(trashy,trashiness).
  690. my_stems(trenchant,trenchancy).
  691. my_stems(triangular,triangularity).
  692. my_stems(trivial,triviality).
  693. my_stems(turnover,'turn over').
  694. my_stems(unbounded,unboundedness).
  695. my_stems(undesirable,undesirability).
  696. my_stems(unfavorable,unfavorableness).
  697. my_stems(unfavourable,unfavourableness).
  698. my_stems(unfeasible,unfeasibility).
  699. my_stems(unfit,unfitness).
  700. my_stems(unhurried,unhurriedness).
  701. my_stems(unimportant,unimportance).
  702. my_stems(uninteresting,uninterestingness).
  703. my_stems(unpersuasive,unpersuasiveness).
  704. my_stems(unpointed,unpointedness).
  705. my_stems(unproductive,unproductiveness).
  706. my_stems(unprofitable,unprofitability).
  707. my_stems(unprofitable,unprofitableness).
  708. my_stems(unpropitious,unpropitiousness).
  709. my_stems(unprotected,unprotectedness).
  710. my_stems(unresponsive,unresponsiveness).
  711. my_stems(unseasonable,unseasonableness).
  712. my_stems(unsound,unsoundness).
  713. my_stems(untimely,untimeliness).
  714. my_stems(upright,uprightness).
  715. my_stems(usable,usableness).
  716. my_stems(useable,useableness).
  717. my_stems(useableness,serviceable).
  718. my_stems(useful,usefulness).
  719. my_stems(useless,uselessness).
  720. my_stems(usufruct,usufructuary).
  721. my_stems(utility,utilitarian).
  722. my_stems(valuable,valuableness).
  723. my_stems(value,evaluate).
  724. my_stems(valueless,valuelessness).
  725. my_stems(vapid,vapidity).
  726. my_stems(vapid,vapidness).
  727. my_stems(vascular,vascularity).
  728. my_stems(vast,vastness).
  729. my_stems(verdant,verdancy).
  730. my_stems(vertical,verticality).
  731. my_stems(vertical,verticalness).
  732. my_stems(viable,viability).
  733. my_stems(virulent,virulence).
  734. my_stems(virulent,virulency).
  735. my_stems(vital,vitalness).
  736. my_stems(vitalness,indispensable).
  737. my_stems(vivid,vividness).
  738. my_stems(voiceless,voicelessness).
  739. my_stems(volume,voluminous).
  740. my_stems(voluminous,voluminosity).
  741. my_stems(voluminous,voluminousness).
  742. my_stems(voluptuous,voluptuousness).
  743. my_stems(vulnerable,vulnerability).
  744. my_stems(watery,wateriness).
  745. my_stems(wavy,waviness).
  746. my_stems(waxy,waxiness).
  747. my_stems(weak,weakness).
  748. my_stems(wee,weeness).
  749. my_stems(weight,weighty).
  750. my_stems(weighty,weightiness).
  751. my_stems(wide,wideness).
  752. my_stems(wise,wiseness).
  753. my_stems(woodsy,woodsiness).
  754. my_stems(woody,woodiness).
  755. my_stems(worth,worthy).
  756. my_stems(worthless,worthlessness).
  757. my_stems(worthwhile,worthwhileness).
  758. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement