Slashdot Mirror


Ask Slashdot: Using Code With an Expired Patent?

kruhft writes "I was recently doing some research into Genetic Programming and found a library through a blog post that looks to be useful. After looking over the code and license, I found that this was the first piece of code I had seen that was protected by a patent, issued on June 19, 1990. I read that patents last for 20 years, meaning that the patent that this code refers to is expired. Is there any way for me to be sure that using this code is safe from any patent troll attacks if I choose to use it? Would rewriting the code keep me from violating any other patents that the author might have regarding the use of such an algorithm? Does the code pass into the public domain after the patent expires?" Note to Chrome users: the above link ("a library") works for me in Firefox, but not in Chrome on Linux; YMMV.

7 of 139 comments (clear)

  1. Rewriting doesn't help by daedae · · Score: 3, Informative

    A patent covers the method, not the implementation. If the patent is expired and the code is not covered under copyright, you can use it. If there are other patents that cover it that aren't expired, then you'd still be exposed to trolling.

    (IANAL)

    1. Re:Rewriting doesn't help by PatentMagus · · Score: 4, Insightful

      Yes, daedae has it right except for a few omissions. A patent that issued in 1990 would indeed be expired today, so you don't have to worry about that patent. However, there may be later patents, perhaps even a submarine patent, lurking in wait for you. Furthermore, you are never safe from patent trolls.

      Copyright is probably your biggest issue though. Simply rewriting the code doesn't always work unless you take some type of positive step to ensure that the new code is "clean". For example, do not just go through the old code changing variable names and cleaning things up here and there. The folks that do clean implementations 'for real' will actually hire programmers and give them specifications but absolutely no code or psuedo-code. A little more googling may turn up another implementation. Genetic algorithms and programs were all over the place 20 years ago.

      --
      I am a lawyer, but not yours. Anything I tell you might be a total lie intended to benefit my clients at your expense.
  2. No by bmo · · Score: 4, Informative

    >Is there any way for me to be sure that using this code is safe from any patent troll attacks if I choose to use it?

    Short answer: No
    Long answer: There are duplicate patents of everything out there. This was explained in the This American Life episode 441. http://www.thisamericanlife.org/radio-archives/episode/441/when-patents-attack

    Solution:

    Stop looking at patents, you idiot. Actively looking at patents and then violating someone's patent means that you "knew or should have known" of the other patent, infringed on it deliberately, and are now liable for triple damages. This is in contrast to "incidental" infringement of someone's patent.

    --
    BMO

    1. Re:No by PRMan · · Score: 4, Interesting

      Which turns the entire patent system on its head. The whole point of patents was to publish the invention so that people could look at it, decide if they wanted to use it (or find a way to compete with it) and then license it or go around it. All of this fosters innovation, since those that look at it and license it are quicker to market and those that compete increase competition.

      The whole "treble damages for willful infringement" nonsense just proves that the patent in question was not a novel invention that couldn't have been easily copied by another design team without even looking. Because it just was copied by another design team without even looking. And why even publish patents if nobody is allowed to look at them? The whole point was that people would use the publications to get ideas of things to license. That's also why you were supposed to put your patent # on your useful invention, so that other people could know how to look it up.

      --
      Peter predicted that you would "deliberately forget" creation 2000 years ago...
    2. Re:No by WidgetGuy · · Score: 3, Informative

      Indeed, there was mention of not one but three patents in the header comments of the CL source file (the "a library" link in the /. summary). To wit: "...is the subject of my United States patents 4,935,877, 5,136,686 and 5,148,513, foreign counterparts, and other patents pending."

      In addition, that same file contains a clear copyright notice.

      --
      One "Aw, Shit!" is worth 100 "Ata boys!"
    3. Re:No by darkchubs · · Score: 3, Insightful

      Pffffft, The bill is so watered down it does nothing good and a some bad. Reform was going to include patent validity in trial, this would have helped flush the crud out of the system... but our overlords couldn't decide if that was good for them or not, so it fall away.

  3. Patent term expiration by Dachannien · · Score: 4, Informative

    Patents applied for (or claiming continuity) before 8 June 1995 have a term of either 17 years from date of issue or 20 years from the filing date (or the earliest filing date in the continuity chain), whichever is longer. On or after that date, the term expires 20 years from the filing date (or the earliest filing date in the continuity chain). This is modified by any patent term adjustment printed on the face of the patent, which results from some kinds of delays during examination caused by the USPTO. If the applicant filed a terminal disclaimer in the patent, then they have disclaimed additional patent term beyond the expiration of some other patent because of "double patenting" issues. Additionally, the patentee must pay maintenance fees at 3.5, 7.5, and 11.5 years after the date of issue to avoid abandonment of the patent.

    And that's not even all of the potential caveats related to patent term expiration.

    In this case, of course, the patent in question expired a few years ago at least. A clean room implementation of that patent (to avoid copyright issues) will have no patent hassles arising from that particular patent. There could be other patents covering related techniques or improvements on that same technique that are still in force, although the risks associated with that are similar to the risks faced by anyone writing code these days.