Author Topic: Autolisp implementation of genetic algorithm  (Read 2306 times)

0 Members and 1 Guest are viewing this topic.

sysuwzx

  • Mosquito
  • Posts: 18
Autolisp implementation of genetic algorithm
« on: March 24, 2019, 03:27:24 AM »
Hello~Anyone who is familiar with the Autolisp implementation of genetic algorithm? or are there any package of optimization? Thanks a lot

dgorsman

  • Water Moccasin
  • Posts: 2437
Re: Autolisp implementation of genetic algorithm
« Reply #1 on: March 24, 2019, 08:36:39 PM »
I'm not aware of any specific implementation.  A generic implementation would be very difficult, and likely less efficient than one built for a specific purpose.
If you are going to fly by the seat of your pants, expect friction burns.

try {GreatPower;}
   catch (notResponsible)
      {NextTime(PlanAhead);}
   finally
      {MasterBasics;}

sysuwzx

  • Mosquito
  • Posts: 18
Re: Autolisp implementation of genetic algorithm
« Reply #2 on: March 24, 2019, 09:48:41 PM »
I'm not aware of any specific implementation.  A generic implementation would be very difficult, and likely less efficient than one built for a specific purpose.

Thanks, i'm aware of that too....And some algorithm is so difficult considering lisp efficency...

ElpanovEvgeniy

  • Water Moccasin
  • Posts: 1569
  • Moscow (Russia)
Re: Autolisp implementation of genetic algorithm
« Reply #3 on: March 26, 2019, 06:25:19 AM »
my variant use genetic algorithm:
(Challenge) To draw the shortest lwpolyline

sysuwzx

  • Mosquito
  • Posts: 18
Re: Autolisp implementation of genetic algorithm
« Reply #4 on: March 28, 2019, 07:48:46 PM »