author int64 658 755k | date stringlengths 19 19 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods list | language stringclasses 20 values | license stringclasses 3 values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
281,054 | 24.11.2022 13:06:25 | -7,200 | 8ef32617ba43120b63de64149d221c792f1f0752 | Added board description for electro-smith daisy seed | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "hw/bsp/stm32h7/boards/daisyseed/board.h",
"diff": "+/*\n+ * The MIT License (MIT)\n+ *\n+ * Copyright (c) 2021, Ha Thach (tinyusb.org)\n+ *\n+ * Permission is hereby granted, free of charge, to any person obtaining a copy\n+ * of this software a... | C | MIT License | hathach/tinyusb | Added board description for electro-smith daisy seed |
281,060 | 28.11.2022 17:41:00 | 0 | 1fce76ad472fe1936eedea0688960c76bd42fd40 | Fix issue with the CDC SetLineCoding request
The SetLineCoding would fail as host would send the SETUP OUT phase before tinyUSB had setup a transaction for it. ft9xx port would ignore the transfer since there was no valid transaction setup for it. One SETUP data phase packet is cached now. | [
{
"change_type": "MODIFY",
"old_path": "examples/device/cdc_dual_ports/src/usb_descriptors.c",
"new_path": "examples/device/cdc_dual_ports/src/usb_descriptors.c",
"diff": "@@ -97,7 +97,7 @@ enum\n#define EPNUM_CDC_1_OUT 0x05\n#define EPNUM_CDC_1_IN 0x85\n-#elif CFG_TUSB_MCU == OPT_MCU_SAMG || CFG_TU... | C | MIT License | hathach/tinyusb | Fix issue with the CDC SetLineCoding request
The SetLineCoding would fail as host would send the SETUP OUT phase before tinyUSB had setup a transaction for it. ft9xx port would ignore the transfer since there was no valid transaction setup for it. One SETUP data phase packet is cached now. |
281,077 | 30.11.2022 11:33:24 | 0 | d588167a39fd01e5cea718deb1917e74c6a801ab | Modify FreeRTOS integration to allow non-static allocation. | [
{
"change_type": "MODIFY",
"old_path": "src/osal/osal_freertos.h",
"new_path": "src/osal/osal_freertos.h",
"diff": "@@ -62,12 +62,20 @@ TU_ATTR_ALWAYS_INLINE static inline void osal_task_delay(uint32_t msec)\n//--------------------------------------------------------------------+\n// Semaphore API\n... | C | MIT License | hathach/tinyusb | Modify FreeRTOS integration to allow non-static allocation. |
281,060 | 30.11.2022 11:46:13 | 0 | fe63e30a4408dacc714ad9fcf39cf6fcf7c7d865 | Add FT9xx for cdc_dual_ports
Fix handling of interrupt endpoints. i.e. no ZLPs.
Fix the assignation of endpoint types.
Add button support for MM900evx boards.
On board support do not block for UART input. | [
{
"change_type": "MODIFY",
"old_path": "examples/device/cdc_dual_ports/src/usb_descriptors.c",
"new_path": "examples/device/cdc_dual_ports/src/usb_descriptors.c",
"diff": "@@ -111,12 +111,13 @@ enum\n#elif CFG_TUSB_MCU == OPT_MCU_FT90X || CFG_TUSB_MCU == OPT_MCU_FT93X\n// FT9XX doesn't support a sam... | C | MIT License | hathach/tinyusb | Add FT9xx for cdc_dual_ports
Fix handling of interrupt endpoints. i.e. no ZLPs.
Fix the assignation of endpoint types.
Add button support for MM900evx boards.
On board support do not block for UART input. |
281,060 | 30.11.2022 12:15:27 | 0 | 1437ad1dfb5b48169f680253707821bd9751fc65 | Add endpoint definitions for more example projects. | [
{
"change_type": "MODIFY",
"old_path": "examples/device/dynamic_configuration/src/usb_descriptors.c",
"new_path": "examples/device/dynamic_configuration/src/usb_descriptors.c",
"diff": "@@ -145,6 +145,19 @@ enum\n#define EPNUM_1_MSC_OUT 0x01\n#define EPNUM_1_MSC_IN 0x82\n+#elif CFG_TUSB_MCU == OPT_M... | C | MIT License | hathach/tinyusb | Add endpoint definitions for more example projects. |
281,060 | 30.11.2022 12:49:15 | 0 | d3c4f66d3587f4a733ba974d6ab4f4cb96ffde29 | Fix script issues with paths including spaces from env variable.
$(FT90X_TOOLCHAIN) or even $(TOP) may have spaces. Quote to fix. | [
{
"change_type": "MODIFY",
"old_path": "hw/bsp/brtmm90x/family.mk",
"new_path": "hw/bsp/brtmm90x/family.mk",
"diff": "@@ -8,7 +8,7 @@ ifeq ($(FT9XX_PREBUILT_LIBS),1)\n# If the FT90X toolchain is installed on Windows systems then the SDK\n# include files and prebuilt libraries are at: %FT90X_TOOLCHAI... | C | MIT License | hathach/tinyusb | Fix script issues with paths including spaces from env variable.
$(FT90X_TOOLCHAIN) or even $(TOP) may have spaces. Quote to fix. |
281,060 | 30.11.2022 16:18:07 | 0 | 8cce9385e20986e0f59f9b1ee54331a09d3193de | More configurable board options | [
{
"change_type": "MODIFY",
"old_path": "hw/bsp/brtmm90x/boards/mm900evxb/board.h",
"new_path": "hw/bsp/brtmm90x/boards/mm900evxb/board.h",
"diff": "extern \"C\" {\n#endif\n+#include <tinyprintf.h>\n+\n+// UART to use on this board.\n+#ifndef BOARD_UART\n+#define BOARD_UART UART0\n+#endif\n+\n// UART... | C | MIT License | hathach/tinyusb | More configurable board options |
281,114 | 01.12.2022 16:06:15 | 0 | ae588d796e1b035c7efd582a4e4f3fc28b3a5ac0 | Alter tuh_task_ext() function so no need to return when using FreeRTOS | [
{
"change_type": "MODIFY",
"old_path": "src/host/usbh.c",
"new_path": "src/host/usbh.c",
"diff": "@@ -509,7 +509,7 @@ void tuh_task_ext(uint32_t timeout_ms, bool in_isr)\ndefault: break;\n}\n-#if CFG_TUSB_OS != OPT_OS_NONE && CFG_TUSB_OS != OPT_OS_PICO\n+#if CFG_TUSB_OS != OPT_OS_NONE && CFG_TUSB_OS... | C | MIT License | hathach/tinyusb | Alter tuh_task_ext() function so no need to return when using FreeRTOS |
281,077 | 01.12.2022 17:53:35 | 0 | c31b95c91652f58b8b991a5481c9f7c37be7f09a | Added CFG_TUSB_MEM_SECTION define to struct _ctrl_xfer in usbh.c | [
{
"change_type": "MODIFY",
"old_path": "src/host/usbh.c",
"new_path": "src/host/usbh.c",
"diff": "@@ -246,8 +246,8 @@ static uint8_t _usbh_ctrl_buf[CFG_TUH_ENUMERATION_BUFSIZE];\n// Control transfer: since most controller does not support multiple control transfer\n// on multiple devices concurrentl... | C | MIT License | hathach/tinyusb | Added CFG_TUSB_MEM_SECTION define to struct _ctrl_xfer in usbh.c |
281,077 | 02.12.2022 10:00:19 | 0 | 3816869fce15509fd43eb5a6d14de76478f86cf1 | Some reverts and changes after discussion. | [
{
"change_type": "MODIFY",
"old_path": "src/host/usbh.c",
"new_path": "src/host/usbh.c",
"diff": "@@ -246,8 +246,8 @@ static uint8_t _usbh_ctrl_buf[CFG_TUH_ENUMERATION_BUFSIZE];\n// Control transfer: since most controller does not support multiple control transfer\n// on multiple devices concurrentl... | C | MIT License | hathach/tinyusb | Some reverts and changes after discussion. |
281,077 | 02.12.2022 10:13:35 | 0 | 52261ac02dfbe58f35f959be852f0949cc0744cd | Back out another of my changes I am still investigating. | [
{
"change_type": "MODIFY",
"old_path": "src/portable/ehci/ehci.c",
"new_path": "src/portable/ehci/ehci.c",
"diff": "@@ -193,7 +193,6 @@ static void list_remove_qhd_by_addr(ehci_link_t* list_head, uint8_t dev_addr)\n{\n// TODO check type for ISO iTD and siTD\n// TODO Suppress cast-align warning\n- if... | C | MIT License | hathach/tinyusb | Back out another of my changes I am still investigating. |
281,168 | 02.06.2022 13:22:53 | -7,200 | 603effbb77ab587bae9800993a53599a9dbff97e | cdc: Fix autoflush for FIFO < MPS | [
{
"change_type": "MODIFY",
"old_path": "src/class/cdc/cdc_device.c",
"new_path": "src/class/cdc/cdc_device.c",
"diff": "@@ -171,7 +171,7 @@ uint32_t tud_cdc_n_write(uint8_t itf, void const* buffer, uint32_t bufsize)\nuint16_t ret = tu_fifo_write_n(&p_cdc->tx_ff, buffer, (uint16_t) bufsize);\n// flus... | C | MIT License | hathach/tinyusb | cdc: Fix autoflush for FIFO < MPS |
281,149 | 08.12.2022 11:18:28 | -3,600 | 15ab35d9b82590e49937457efd2654adb2dd8b65 | usbtmc: correct packet size bug
Code was only reading the first 64 bytes of a 512 bytes packet. | [
{
"change_type": "MODIFY",
"old_path": "src/class/usbtmc/usbtmc_device.c",
"new_path": "src/class/usbtmc/usbtmc_device.c",
"diff": "@@ -364,7 +364,7 @@ bool tud_usbtmc_start_bus_read()\ndefault:\nTU_VERIFY(false);\n}\n- TU_VERIFY(usbd_edpt_xfer(usbtmc_state.rhport, usbtmc_state.ep_bulk_out, usbtmc_s... | C | MIT License | hathach/tinyusb | usbtmc: correct packet size bug
Code was only reading the first 64 bytes of a 512 bytes packet. |
281,149 | 08.12.2022 11:36:48 | -3,600 | 071da47944a4345b41328dc514d8a73a537072a9 | Correct interrupt polling interval in descriptor
Use macro argument instead of 0x16 constant value.
At least Linux kernel was complaining about this value:
"config 1 interface 0 altsetting 0 endpoint 0x82 has an invalid bInterval 22, changing to 8"
(warning obtained using usbtmc device config) | [
{
"change_type": "MODIFY",
"old_path": "src/device/usbd.h",
"new_path": "src/device/usbd.h",
"diff": "@@ -603,7 +603,7 @@ TU_ATTR_WEAK bool tud_vendor_control_xfer_cb(uint8_t rhport, uint8_t stage, tusb\n/* optional interrupt endpoint */ \\\n// _int_pollingInterval : for LS/FS, expressed in frames (... | C | MIT License | hathach/tinyusb | Correct interrupt polling interval in descriptor
Use macro argument instead of 0x16 constant value.
At least Linux kernel was complaining about this value:
"config 1 interface 0 altsetting 0 endpoint 0x82 has an invalid bInterval 22, changing to 8"
(warning obtained using usbtmc device config) |
281,088 | 08.12.2022 14:50:34 | -3,600 | 007ed1f0fe84c13567c7a4ccda79d71a05d79aec | Added missing typecast to pass build checks | [
{
"change_type": "MODIFY",
"old_path": "src/class/usbtmc/usbtmc_device.c",
"new_path": "src/class/usbtmc/usbtmc_device.c",
"diff": "@@ -364,7 +364,7 @@ bool tud_usbtmc_start_bus_read()\ndefault:\nTU_VERIFY(false);\n}\n- TU_VERIFY(usbd_edpt_xfer(usbtmc_state.rhport, usbtmc_state.ep_bulk_out, usbtmc_s... | C | MIT License | hathach/tinyusb | Added missing typecast to pass build checks |
281,053 | 19.12.2022 17:18:47 | -28,800 | 7d76c172db2f45846c9db45ceed4d879be96296d | [add] semaphore reset support for rt-thread
add semaphore reset support for rt-thread | [
{
"change_type": "MODIFY",
"old_path": "src/osal/osal_rtthread.h",
"new_path": "src/osal/osal_rtthread.h",
"diff": "@@ -63,7 +63,8 @@ TU_ATTR_ALWAYS_INLINE static inline bool osal_semaphore_wait(osal_semaphore_t se\n}\nTU_ATTR_ALWAYS_INLINE static inline void osal_semaphore_reset(osal_semaphore_t co... | C | MIT License | hathach/tinyusb | [add] semaphore reset support for rt-thread
add semaphore reset support for rt-thread |
281,053 | 19.12.2022 17:25:35 | -28,800 | e992ff46d24984a8e1143d6d6c1c5aba8c93266f | Update osal_rtthread.h | [
{
"change_type": "MODIFY",
"old_path": "src/osal/osal_rtthread.h",
"new_path": "src/osal/osal_rtthread.h",
"diff": "@@ -63,8 +63,7 @@ TU_ATTR_ALWAYS_INLINE static inline bool osal_semaphore_wait(osal_semaphore_t se\n}\nTU_ATTR_ALWAYS_INLINE static inline void osal_semaphore_reset(osal_semaphore_t co... | C | MIT License | hathach/tinyusb | Update osal_rtthread.h |
281,044 | 19.12.2022 13:58:54 | -3,600 | a46ad8fcdfef8c742933843b9c237778fc5ea0a0 | Update osal_freertos.h
Fix FreeRTOS task switch even if not required (unitialized variable usage) | [
{
"change_type": "MODIFY",
"old_path": "src/osal/osal_freertos.h",
"new_path": "src/osal/osal_freertos.h",
"diff": "@@ -115,7 +115,7 @@ TU_ATTR_ALWAYS_INLINE static inline bool osal_semaphore_post(osal_semaphore_t se\n}\nelse\n{\n- BaseType_t xHigherPriorityTaskWoken;\n+ BaseType_t xHigherPriorityTa... | C | MIT License | hathach/tinyusb | Update osal_freertos.h
Fix FreeRTOS task switch even if not required (unitialized variable usage) |
281,154 | 27.12.2022 23:02:33 | -3,600 | 95ba158a1070635551b01d921cb4c5eeb7734989 | Fix UVC probe and commit on MacOS | [
{
"change_type": "MODIFY",
"old_path": "src/class/video/video_device.c",
"new_path": "src/class/video/video_device.c",
"diff": "@@ -917,7 +917,7 @@ static int handle_video_stm_cs_req(uint8_t rhport, uint8_t stage,\nswitch (request->bRequest) {\ncase VIDEO_REQUEST_SET_CUR:\nif (stage == CONTROL_STAGE... | C | MIT License | hathach/tinyusb | Fix UVC probe and commit on MacOS |
281,039 | 02.01.2023 17:12:03 | -3,600 | 82f105e32b3b299509daa1dc24d6aa94f5ce63fb | Fix IAR warning: Warning[Pe381]: extra ";" ignored | [
{
"change_type": "MODIFY",
"old_path": "src/class/usbtmc/usbtmc_device.c",
"new_path": "src/class/usbtmc/usbtmc_device.c",
"diff": "@@ -157,8 +157,10 @@ static bool handle_devMsgOut(uint8_t rhport, void *data, size_t len, size_t pack\nstatic uint8_t termChar;\nstatic uint8_t termCharRequested = fals... | C | MIT License | hathach/tinyusb | Fix IAR warning: Warning[Pe381]: extra ";" ignored |
281,077 | 03.01.2023 10:33:36 | 0 | f5cffeedec863c1efd59688fa79a8455046e8377 | Fix typo in audio.h. Specifiy _ctrl_xfer struct in CFG_TUSB_MEM_SECTION
Add NULL check to loop in list_remove_qhd_by_addr() function in ehci.c | [
{
"change_type": "MODIFY",
"old_path": "src/host/usbh.c",
"new_path": "src/host/usbh.c",
"diff": "@@ -229,10 +229,10 @@ static osal_queue_t _usbh_q;\nCFG_TUSB_MEM_SECTION CFG_TUSB_MEM_ALIGN\nstatic uint8_t _usbh_ctrl_buf[CFG_TUH_ENUMERATION_BUFSIZE];\n-// Control transfer: since most controller does... | C | MIT License | hathach/tinyusb | Fix typo in audio.h. Specifiy _ctrl_xfer struct in CFG_TUSB_MEM_SECTION
Add NULL check to loop in list_remove_qhd_by_addr() function in ehci.c |
281,039 | 08.01.2023 11:20:15 | -3,600 | 57de6016f9470904228f7b8d6dbe467251922757 | ip3511 : Fix IAR build. | [
{
"change_type": "MODIFY",
"old_path": "src/portable/nxp/lpc_ip3511/dcd_lpc_ip3511.c",
"new_path": "src/portable/nxp/lpc_ip3511/dcd_lpc_ip3511.c",
"diff": "@@ -139,7 +139,7 @@ typedef union TU_ATTR_PACKED\nuint32_t stall : 1 ;\nuint32_t disable : 1 ;\nuint32_t active : 1 ;\n- };\n+ } cmd_sts;\n}ep_c... | C | MIT License | hathach/tinyusb | ip3511 : Fix IAR build. |
281,039 | 11.01.2023 18:49:15 | -3,600 | 9d19ed940e303ea01a685ebba986b24713f5febd | dwc2: fix IAR warnings. | [
{
"change_type": "MODIFY",
"old_path": "src/portable/synopsys/dwc2/dcd_dwc2.c",
"new_path": "src/portable/synopsys/dwc2/dcd_dwc2.c",
"diff": "@@ -529,8 +529,10 @@ void dcd_init (uint8_t rhport)\ndwc2->dcfg |= DCFG_NZLSOHSK;\n// Clear all interrupts\n- dwc2->gintsts |= dwc2->gintsts;\n- dwc2->gotgint... | C | MIT License | hathach/tinyusb | dwc2: fix IAR warnings. |
281,059 | 20.01.2023 12:59:16 | 18,000 | 456a8b208b4b9e7ce08c9f4515f4b616cbbe5d6d | Add support for NXP's mimxrt1024_evk evaluation board.
Tested AOK with device\cdc_msc_freertos example. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "hw/bsp/imxrt/boards/mimxrt1024_evk/mimxrt1024_evk/board.h",
"diff": "+/*\n+ * The MIT License (MIT)\n+ *\n+ * Copyright (c) 2019, Ha Thach (tinyusb.org)\n+ *\n+ * Permission is hereby granted, free of charge, to any person obtaining a copy\n+ * ... | C | MIT License | hathach/tinyusb | Add support for NXP's mimxrt1024_evk evaluation board.
Tested AOK with device\cdc_msc_freertos example. |
281,103 | 05.12.2022 11:56:42 | 0 | c3e47c31ccd42b144a8a770ed56b8cdc4c2932cc | rp2040: export hw_endpoint_start_next_buffer() and hw_endpoint_lock_update()
The next change to the driver requires the export of these functions. Leave the
lock unimplemented for now.
Also move hw_set and hw_clear aliases into the top-level header file. | [
{
"change_type": "MODIFY",
"old_path": "src/portable/raspberrypi/rp2040/dcd_rp2040.c",
"new_path": "src/portable/raspberrypi/rp2040/dcd_rp2040.c",
"diff": "/* Low level controller\n*------------------------------------------------------------------*/\n-#define usb_hw_set hw_set_alias(usb_hw)\n-#defi... | C | MIT License | hathach/tinyusb | rp2040: export hw_endpoint_start_next_buffer() and hw_endpoint_lock_update()
The next change to the driver requires the export of these functions. Leave the
lock unimplemented for now.
Also move hw_set and hw_clear aliases into the top-level header file. |
281,103 | 24.01.2023 12:02:32 | 0 | 0d2078d295667ef985675c398db7fd6a893be895 | rp2040: shuffle hw_endpoint members
Ordering by element size prevents alignment holes, and as a consequence the
host mode version of the struct is the same size as device, as pad bytes at
the end are used instead. | [
{
"change_type": "MODIFY",
"old_path": "src/portable/raspberrypi/rp2040/rp2040_usb.h",
"new_path": "src/portable/raspberrypi/rp2040/rp2040_usb.h",
"diff": "@@ -64,17 +64,19 @@ typedef struct hw_endpoint\n// Buffer pointer in usb dpram\nuint8_t *hw_data_buf;\n+ // User buffer in main memory\n+ uint8_... | C | MIT License | hathach/tinyusb | rp2040: shuffle hw_endpoint members
Ordering by element size prevents alignment holes, and as a consequence the
host mode version of the struct is the same size as device, as pad bytes at
the end are used instead. |
261,230 | 02.01.2017 11:45:31 | -3,600 | 3d3d714c61f7c9fb5d570af5a818e87f186968a7 | add silent reporting to flatzinc; use it in the C# wrapper; small fixed to the C# fz wrapper | [
{
"change_type": "MODIFY",
"old_path": "src/flatzinc/csharp/flatzinc.swig",
"new_path": "src/flatzinc/csharp/flatzinc.swig",
"diff": "@@ -49,16 +49,24 @@ DECLARE_bool(fz_logging);\nconst bool log = FLAGS_fz_logging;\nFLAGS_fz_logging = true;\noperations_research::fz::ModelStatistics stats(*$self);\n... | C++ | Apache License 2.0 | google/or-tools | add silent reporting to flatzinc; use it in the C# wrapper; small fixed to the C# fz wrapper |
261,234 | 02.01.2017 14:48:58 | -3,600 | e65ac44c892efe4d78bcacf5e66dd77f6b5c50d3 | better detection of JDK on mac | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.port",
"new_path": "makefiles/Makefile.port",
"diff": "@@ -67,14 +67,11 @@ ifeq (\"$(SYSTEM)\",\"unix\")\nNETPLATFORM = x64\nPTRLENGTH = 64\nGUROBI_PLATFORM=mac64\n- CANDIDATE_JDK_HEADERS = \\\n- /System/Library/Java/JavaVirtualMachines/1.6.... | C++ | Apache License 2.0 | google/or-tools | better detection of JDK on mac |
261,234 | 02.01.2017 14:58:05 | -3,600 | a2266ce199b54628b26348b6213fa8d33cc9d3ee | fix in examples/python/check_dependencies.py | [
{
"change_type": "MODIFY",
"old_path": "examples/python/check_dependencies.py",
"new_path": "examples/python/check_dependencies.py",
"diff": "@@ -64,7 +64,7 @@ if __name__ == '__main__':\n#check if we're using ortools from the sources or it's binded by pypi's module\nortools_module_file = inspect.ge... | C++ | Apache License 2.0 | google/or-tools | fix in examples/python/check_dependencies.py |
261,234 | 02.01.2017 15:06:46 | -3,600 | d805f9bdd48e68b18d81b349b078fc6d9176b602 | another fix in examples/python/check_dependencies.py | [
{
"change_type": "MODIFY",
"old_path": "examples/python/check_dependencies.py",
"new_path": "examples/python/check_dependencies.py",
"diff": "@@ -31,7 +31,7 @@ def log_error_and_exit(error_message):\n# Returns the n_th parent of file\ndef n_dirname(n, file):\ndirectory = file\n- for x in xrange(0, n... | C++ | Apache License 2.0 | google/or-tools | another fix in examples/python/check_dependencies.py |
261,230 | 02.01.2017 17:47:20 | -3,600 | 78a624b8a5ec5dc5ae2647493082a090f80ad202 | improve reporting of c# flatzinc | [
{
"change_type": "MODIFY",
"old_path": "examples/csharp/csfz.cs",
"new_path": "examples/csharp/csfz.cs",
"diff": "@@ -59,10 +59,26 @@ public class CsFz\nforeach (SolutionOutputSpecs output in output_vector) {\nif (output.variable != null) {\nIntegerVariable var = output.variable;\n- Console.WriteLin... | C++ | Apache License 2.0 | google/or-tools | improve reporting of c# flatzinc |
261,234 | 02.01.2017 20:53:18 | -3,600 | 923cf07b68e2b5fbfe480b4332af5086850ae4bd | integrate install_python_dependencies in python + use protobuf from sources | [
{
"change_type": "MODIFY",
"old_path": "examples/python/check_dependencies.py",
"new_path": "examples/python/check_dependencies.py",
"diff": "@@ -2,16 +2,19 @@ import logging, sys, inspect\nfrom os.path import dirname, abspath\nfrom optparse import OptionParser\n+def log_error_and_exit(error_message... | C++ | Apache License 2.0 | google/or-tools | integrate install_python_dependencies in python + use protobuf from sources |
261,234 | 02.01.2017 21:06:20 | -3,600 | 8a60e2491318a5c913602ddb9a95df2c6d1d6408 | fixes in tools/check_python_deps.py | [
{
"change_type": "MODIFY",
"old_path": "tools/check_python_deps.py",
"new_path": "tools/check_python_deps.py",
"diff": "@@ -7,24 +7,24 @@ try:\nfrom setuptools.command import easy_install\nexcept ImportError:\nraise ImportError(\"\"\"setuptools is not installed for \\\"\"\"\" + sys.executable + \"\"... | C++ | Apache License 2.0 | google/or-tools | fixes in tools/check_python_deps.py |
261,234 | 02.01.2017 21:21:35 | -3,600 | dc65c072bcdb86efe29f5182385cdd97a236b211 | fix in makefiles/Makefile.python.mk for windows | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -28,7 +28,7 @@ endif\nOR_TOOLS_PYTHONPATH = $(OR_ROOT_FULL)$Ssrc$(CPSEP)$(OR_ROOT_FULL)$Sdependencies$Ssources$Sprotobuf-$(PROTOBUF_TAG)$Spython\nifeq ($(SYSTEM),win)\n- PYT... | C++ | Apache License 2.0 | google/or-tools | fix in makefiles/Makefile.python.mk for windows |
261,234 | 03.01.2017 16:51:27 | -3,600 | 0456961d5520b13f3947a3d807449d392f4819f5 | fix in Google.OrTools.Flatzinc.dll dependencies | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -387,7 +387,7 @@ $(OBJ_DIR)/swig/flatzinc_csharp_wrap.$O: $(GEN_DIR)/flatzinc/flatzinc_csharp_wra\n$(BIN_DIR)/Google.OrTools.Flatzinc.dll: \\\n$(OBJ_DIR)/swig/flatzinc_cshar... | C++ | Apache License 2.0 | google/or-tools | fix in Google.OrTools.Flatzinc.dll dependencies |
261,232 | 05.01.2017 09:42:40 | 0 | a031e09d6e557e9990087558fdddd37983946604 | Fix memory corruption of routing callbacks in Java | [
{
"change_type": "MODIFY",
"old_path": "src/constraint_solver/java/routing.swig",
"new_path": "src/constraint_solver/java/routing.swig",
"diff": "@@ -149,7 +149,7 @@ class NodeEvaluator2 : private operations_research::RoutingModel::NodeEvaluator2\noperations_research::RoutingModel::NodeEvaluator2* g... | C++ | Apache License 2.0 | google/or-tools | Fix memory corruption of routing callbacks in Java |
261,232 | 06.01.2017 13:26:08 | 0 | 502d529fa30cfa1e3c3ff4e53714843e1000ee8b | Updating Java examples to use new routing APIs | [
{
"change_type": "MODIFY",
"old_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java",
"new_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java",
"diff": "@@ -216,7 +216,7 @@ public class CapacitatedVehicleRouti... | C++ | Apache License 2.0 | google/or-tools | Updating Java examples to use new routing APIs |
261,234 | 10.01.2017 21:05:56 | -3,600 | 8b1cc2e407cb7ef67b8270e7df8381efbb59a70f | Refactoring of makefiles | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -36,6 +36,7 @@ endif\n.PHONY : python cc java csharp sat third_party_check\nall: third_party_check cc java python csharp\n+ @echo Or-tools have been built for $(BUILT_LANGUAGES)\nclean: clean_cc clean_java clean_p... | C++ | Apache License 2.0 | google/or-tools | Refactoring of makefiles |
261,234 | 10.01.2017 21:26:52 | -3,600 | d5fad34951804f119407db5cbd7a5ce59c554ac2 | small fix in makefiles/Makefile.third_party.unix | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix",
"new_path": "makefiles/Makefile.third_party.unix",
"diff": "@@ -474,6 +474,7 @@ Makefile.local: makefiles/Makefile.third_party.unix\n@echo $(SELECTED_JDK_DEF)>> Makefile.local\n@echo UNIX_PYTHON_VER = $(DETECTED_PYTHON_VER... | C++ | Apache License 2.0 | google/or-tools | small fix in makefiles/Makefile.third_party.unix |
261,234 | 11.01.2017 19:12:16 | -3,600 | 1653ebc168e6a0a878284d78780ad586177a8819 | fix in java dependencies | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.java.mk",
"new_path": "makefiles/Makefile.java.mk",
"diff": ".PHONY: java rjava cjava\n-CANONIC_JDK_DIRECTORY = $(subst $(SPACE),$(BACKSLASH_SPACE),$(subst \\,/,$(subst \\\\,/,$(JDK_DIRECTORY))))\n-# Main target\n-ifeq ($(wildcard $(CANONIC_... | C++ | Apache License 2.0 | google/or-tools | fix in java dependencies |
261,234 | 12.01.2017 14:49:56 | -3,600 | fb970a252d5bbe27ad5465fe0460710d71c3ded9 | fix for PYTHON_INC on MAC OS | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.unix",
"new_path": "makefiles/Makefile.unix",
"diff": "@@ -40,15 +40,22 @@ ARCHIVE_EXT = .tar.gz\nFZ_EXE = fzn-or-tools$E\n# This is needed to find python.h\n+PYTHON_VERSION = $(UNIX_PYTHON_VER)\nPATH_TO_PYTHON = $(shell which python$(UNIX_P... | C++ | Apache License 2.0 | google/or-tools | fix for PYTHON_INC on MAC OS |
261,234 | 12.01.2017 17:51:41 | -3,600 | 233c4ac58d393cafb4e2c85e3f44877e9b6c5d36 | update the way we detect the system | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -23,16 +23,12 @@ OR_TOOLS_MINOR = 1\nifeq ($(OR_TOOLS_TOP),)\nOR_ROOT =\nelse\n- ifeq \"$(SHELL)\" \"cmd.exe\"\n- OR_ROOT = $(OR_TOOLS_TOP)\\\\\n- else\n- ifeq \"$(SHELL)\" \"sh.exe\"\n+ ifeq ($(OS), Windows_NT)\n... | C++ | Apache License 2.0 | google/or-tools | update the way we detect the system |
261,234 | 16.01.2017 11:22:29 | -3,600 | dfa8920f184a4738943c45801eea016713d9b744 | Upgrade Zlib on Windows | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win",
"new_path": "makefiles/Makefile.third_party.win",
"diff": "@@ -3,8 +3,8 @@ GFLAGS_TAG = master\nPROTOBUF_TAG = 3.0.0\nSPARSEHASH_TAG = 2.0.3\nCBC_TAG = 2.9.8\n-ZLIB_TAG = 1.2.10\n-ZLIB_ARCHIVE_TAG = 1210\n+ZLIB_TAG = 1.2.11... | C++ | Apache License 2.0 | google/or-tools | Upgrade Zlib on Windows |
261,234 | 18.01.2017 17:16:48 | -3,600 | 5229b6c1b718221e3343c08fe259db3914d3b6e7 | better detection for python includes on Unix | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.unix",
"new_path": "makefiles/Makefile.unix",
"diff": "@@ -41,19 +41,9 @@ FZ_EXE = fzn-or-tools$E\n# This is needed to find python.h\nPYTHON_VERSION = $(UNIX_PYTHON_VER)\n-PATH_TO_PYTHON = $(shell which python$(UNIX_PYTHON_VER) | xargs dirna... | C++ | Apache License 2.0 | google/or-tools | better detection for python includes on Unix |
261,232 | 20.01.2017 09:04:51 | 0 | a3b7790f6b1c6ea2b0604c59bf60c5140692d5e7 | Fix PathCheapestArc heuristic on model with a single vehicle and pickup and delivery pairs; use standard filtered code instead of fast path builder. | [
{
"change_type": "MODIFY",
"old_path": "src/constraint_solver/routing.cc",
"new_path": "src/constraint_solver/routing.cc",
"diff": "@@ -4576,7 +4576,7 @@ void RoutingModel::CreateFirstSolutionDecisionBuilders(\n// Path-based cheapest addition heuristic.\nfirst_solution_decision_builders_[FirstSoluti... | C++ | Apache License 2.0 | google/or-tools | Fix PathCheapestArc heuristic on model with a single vehicle and pickup and delivery pairs; use standard filtered code instead of fast path builder. |
261,234 | 23.01.2017 15:14:34 | -3,600 | c1fe3b1423e5e30e932e9c8432dda39025174f57 | refactoring of the binaries Makefile | [
{
"change_type": "MODIFY",
"old_path": "tools/Makefile.cc",
"new_path": "tools/Makefile.cc",
"diff": "# contains the trailing separator if not empty.\n# Let's discover something about where we run\n-ifeq \"$(SHELL)\" \"cmd.exe\"\n- SYSTEM = win\n-else\n- ifeq \"$(SHELL)\" \"sh.exe\"\n+# Let's discov... | C++ | Apache License 2.0 | google/or-tools | refactoring of the binaries Makefile |
261,234 | 23.01.2017 18:55:13 | -3,600 | 413c3c2be529763ca3895cfb01254e48ec05cd1b | better python detection | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.port",
"new_path": "makefiles/Makefile.port",
"diff": "@@ -13,13 +13,7 @@ endif\nifeq (\"$(SYSTEM)\",\"unix\")\nOR_TOOLS_TOP ?= $(shell pwd)\nOS = $(shell uname -s)\n- ifneq ($(shell which python2.7),)\n- DETECTED_PYTHON_VERSION = 2.7\n- els... | C++ | Apache License 2.0 | google/or-tools | better python detection |
261,234 | 24.01.2017 19:33:22 | -3,600 | 1dbd92ca65cd03be00045e2213a126d5e6da9efd | support multi versions of python in release | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "-.PHONY : install_python_modules\n+.PHONY : python install_python_modules pypi_archive pyinit pycp pyalgorithms pygraph pylp\n# Python support using SWIG\n@@ -247,63 +247,69 @@... | C++ | Apache License 2.0 | google/or-tools | support multi versions of python in release |
261,230 | 24.01.2017 20:17:42 | 0 | 7b6f5f22c440ee400b9e5372c248408fa2e72816 | use the full path in python executable | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.port",
"new_path": "makefiles/Makefile.port",
"diff": "@@ -159,7 +159,7 @@ ifeq (\"$(SYSTEM)\",\"win\")\nelse\nSELECTED_PATH_TO_PYTHON = WINDOWS_PATH_TO_PYTHON = $(DETECTED_PATH_TO_PYTHON)\nendif\n- WINDOWS_PYTHON_VERSION = $(shell python -c... | C++ | Apache License 2.0 | google/or-tools | use the full path in python executable |
261,234 | 24.01.2017 21:26:49 | -3,600 | 72e661f337be64684fa93a38c84fc940a9da4dde | fix in pypi_upload | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -317,12 +317,12 @@ pypi_upload: pypi_archive\n@echo Uploading Pypi module for $(PYTHON_EXECUTABLE).\nifeq ($(SYSTEM),win)\nset VS90COMNTOOLS=$(VS$(VS_COMTOOLS)COMNTOOLS)\n- ... | C++ | Apache License 2.0 | google/or-tools | fix in pypi_upload |
261,234 | 25.01.2017 17:15:43 | -3,600 | 617c99177b762d2ec2ab311e54aba34f1664bbff | add the pkg-config includes for python to PYTHON_INC | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.unix",
"new_path": "makefiles/Makefile.unix",
"diff": "@@ -41,10 +41,16 @@ FZ_EXE = fzn-or-tools$E\n# This is needed to find python.h\nPYTHON_VERSION = $(UNIX_PYTHON_VER)\n-PATH_TO_PYTHON_INCLUDE = $(shell python$(UNIX_PYTHON_VER) -c 'import... | C++ | Apache License 2.0 | google/or-tools | add the pkg-config includes for python to PYTHON_INC |
261,234 | 25.01.2017 18:11:15 | -3,600 | 14b36dd24083909b86bfe695d61a447a5b167a8c | support twine | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -317,14 +317,15 @@ pypi_upload: pypi_archive\n@echo Uploading Pypi module for $(PYTHON_EXECUTABLE).\nifeq ($(SYSTEM),win)\nset VS90COMNTOOLS=$(VS$(VS_COMTOOLS)COMNTOOLS)\n- ... | C++ | Apache License 2.0 | google/or-tools | support twine |
261,230 | 25.01.2017 20:29:08 | 0 | a86664de480d13383d8157b3954b63e6e970b86d | change fz temp folder | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.archive.mk",
"new_path": "makefiles/Makefile.archive.mk",
"diff": "@@ -139,38 +139,39 @@ java_archive: java\n$(COPY) examples$Sdata$Squasigroup_completion$S* temp$S$(INSTALL_DIR)$Sexamples$Sdata$Squasigroup_completion\n$(COPY) examples$Scom$... | C++ | Apache License 2.0 | google/or-tools | change fz temp folder |
261,234 | 26.01.2017 21:22:42 | -3,600 | 66b017de36cbb6c66999254c90858f7c1465f702 | add cvrptw_with_breaks | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "examples/cpp/cvrptw_with_breaks.cc",
"diff": "+// Copyright 2010-2014 Google\n+// Licensed under the Apache License, Version 2.0 (the \"License\");\n+// you may not use this file except in compliance with the License.\n+// You may obtain a copy ... | C++ | Apache License 2.0 | google/or-tools | add cvrptw_with_breaks |
261,234 | 26.01.2017 21:39:17 | -3,600 | 9ab847c5402cf7d542ddb19230c1774b9f563615 | add cvrptw_with_breaks in archive | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -116,7 +116,7 @@ CC_BINARIES = \\\n$(BIN_DIR)/cryptarithm$E \\\n$(BIN_DIR)/cvrp_disjoint_tw$E \\\n$(BIN_DIR)/cvrptw$E \\\n-# $(BIN_DIR)/cvrptw_with_breaks$E \\\n+ $(BIN_DIR)/cvrpt... | C++ | Apache License 2.0 | google/or-tools | add cvrptw_with_breaks in archive |
261,234 | 27.01.2017 16:08:56 | -3,600 | 98e6f5a8d926e620246e0179f051749a0c35ba23 | merge bison and flex commands | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.unix",
"new_path": "makefiles/Makefile.unix",
"diff": "@@ -185,8 +185,6 @@ ifeq ($(PLATFORM),LINUX)\nLINK_PREFIX = -o # Need the space.\nPRE_LIB = -Wl,-rpath $(OR_ROOT_FULL)/lib -L$(OR_ROOT_FULL)/lib -l\nPOST_LIB =\n- BISON = dependencies/in... | C++ | Apache License 2.0 | google/or-tools | merge bison and flex commands |
261,234 | 30.01.2017 18:42:41 | -3,600 | eb9a883e338b3a4cffa4afdb2675cea83b45aeb8 | check if module has __version__ attribute before the check | [
{
"change_type": "MODIFY",
"old_path": "tools/check_python_deps.py",
"new_path": "tools/check_python_deps.py",
"diff": "@@ -21,6 +21,11 @@ def notinstalled(modulename):\nreturn modulename + \"\"\" is not installed for \\\"\"\"\" + sys.executable + \"\"\"\\\"\nRun \\\"\"\"\" + sys.executable + \"\"\"... | C++ | Apache License 2.0 | google/or-tools | check if module has __version__ attribute before the check |
261,230 | 01.02.2017 11:13:39 | -3,600 | bd58659e1711b72e0bb649501aecb51bdfe37f56 | fix crash in fz | [
{
"change_type": "MODIFY",
"old_path": "src/flatzinc/presolve.cc",
"new_path": "src/flatzinc/presolve.cc",
"diff": "@@ -1750,7 +1750,16 @@ bool Presolver::PresolveSimplifyElement(Constraint* ct, std::string* log) {\nconst int64 index = ct->arguments[0].Value() - 1;\nconst int64 value = ct->arguments... | C++ | Apache License 2.0 | google/or-tools | fix crash in fz |
261,234 | 01.02.2017 11:36:02 | -3,600 | 0c5cca53fe2695d1735503cd54b0b0f09d0717b3 | change how the bison archive is extracted | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix",
"new_path": "makefiles/Makefile.third_party.unix",
"diff": "@@ -354,7 +354,7 @@ dependencies/sources/bison-$(BISON_TAG)/Makefile: dependencies/sources/bison-$(B\ncd dependencies/sources/bison-$(BISON_TAG) && $(SET_PATH) ./... | C++ | Apache License 2.0 | google/or-tools | change how the bison archive is extracted |
261,299 | 01.02.2017 12:21:00 | -3,600 | 33e2edeba2c4557209c0d11239c648acd55813b0 | Fix the installation url. | [
{
"change_type": "MODIFY",
"old_path": "README",
"new_path": "README",
"diff": "@@ -41,4 +41,4 @@ or-tools/\ntools/ <- Windows binaries\nFor installation instructions (both source and binary), visit\n-https://developers.google.com/optimization/installing.\n+https://developers.google.com/optimization... | C++ | Apache License 2.0 | google/or-tools | Fix the installation url. |
261,253 | 06.02.2017 20:26:34 | -3,600 | 0cf8b08eea7883acb699bfc2861b1eac96f2fc7d | Bitcasts void* to integral type | [
{
"change_type": "MODIFY",
"old_path": "src/constraint_solver/constraint_solveri.h",
"new_path": "src/constraint_solver/constraint_solveri.h",
"diff": "#include \"base/integral_types.h\"\n#include \"base/logging.h\"\n#include \"base/sysinfo.h\"\n+#include \"base/casts.h\"\n#include \"base/timer.h\"\... | C++ | Apache License 2.0 | google/or-tools | Bitcasts void* to integral type |
261,230 | 07.02.2017 13:24:51 | -3,600 | 52d24d65b037563b5445f09275bbb0c08d802ada | fix compilation after move to unordered_map | [
{
"change_type": "MODIFY",
"old_path": "src/base/hash.h",
"new_path": "src/base/hash.h",
"diff": "@@ -402,4 +402,60 @@ using stdext::hash_set;\n#endif // SWIG\n+#if !defined(STLPORT)\n+// Support a few hash<> operators, in the std namespace.\n+namespace std {\n+template <class First, class Second>\n... | C++ | Apache License 2.0 | google/or-tools | fix compilation after move to unordered_map |
261,230 | 07.02.2017 17:43:25 | -3,600 | c6345f269b939c3bca86439fd16885e2059510a7 | support resource investment problems | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/rcpsp_sat.cc",
"new_path": "examples/cpp/rcpsp_sat.cc",
"diff": "@@ -43,10 +43,23 @@ int ComputeNaiveHorizon(const RcpspParser& parser) {\nreturn horizon;\n}\n+int64 VectorSum(const std::vector<int64>& v) {\n+ int64 res = 0;\n+ for (const int64 c ... | C++ | Apache License 2.0 | google/or-tools | support resource investment problems |
261,230 | 07.02.2017 17:43:43 | -3,600 | 111e7af9c2d45c038a75f87a175a396629ecaf95 | add priorities to propagators | [
{
"change_type": "MODIFY",
"old_path": "src/sat/cp_constraints.cc",
"new_path": "src/sat/cp_constraints.cc",
"diff": "@@ -82,12 +82,6 @@ AllDifferentBoundsPropagator::AllDifferentBoundsPropagator(\nbool AllDifferentBoundsPropagator::Propagate() {\nif (vars_.empty()) return true;\n-\n- // Unfortunate... | C++ | Apache License 2.0 | google/or-tools | add priorities to propagators |
261,230 | 07.02.2017 17:44:35 | -3,600 | 6990c800856fa1b5ed7e4bf100a4e0fab4bdaed5 | delay hole creation in IsDiffCst and IsEqualCst | [
{
"change_type": "MODIFY",
"old_path": "src/constraint_solver/expr_cst.cc",
"new_path": "src/constraint_solver/expr_cst.cc",
"diff": "@@ -419,11 +419,14 @@ class IsEqualCstCt : public CastConstraint {\nint64 l = inhibit ? u : 0;\ntarget_var_->SetRange(l, u);\nif (target_var_->Bound()) {\n- inhibit =... | C++ | Apache License 2.0 | google/or-tools | delay hole creation in IsDiffCst and IsEqualCst |
261,230 | 08.02.2017 11:12:28 | -3,600 | 848fe749467ae0ba64414ebaaada9f57a620eee5 | fix bug in sat/int_var_element | [
{
"change_type": "MODIFY",
"old_path": "src/sat/cp_constraints.cc",
"new_path": "src/sat/cp_constraints.cc",
"diff": "@@ -798,10 +798,7 @@ bool OneOfVarMinPropagator::Propagate() {\nIntegerValue target_min = kMaxIntegerValue;\nfor (int i = 0; i < vars_.size(); ++i) {\nif (trail_->Assignment().Litera... | C++ | Apache License 2.0 | google/or-tools | fix bug in sat/int_var_element |
261,230 | 08.02.2017 11:12:46 | -3,600 | b1f26f355e99911ad24d772c0879c3d4169e37a3 | remove unrecognized line | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/rcpsp_sat.cc",
"new_path": "examples/cpp/rcpsp_sat.cc",
"diff": "@@ -261,7 +261,6 @@ void LoadAndSolve(const std::string& file_name) {\n} // namespace operations_research\nint main(int argc, char** argv) {\n- base::SetFlag(&FLAGS_logtostderr, true... | C++ | Apache License 2.0 | google/or-tools | remove unrecognized line |
261,234 | 09.02.2017 18:43:06 | -3,600 | 66db124c28fddf2d8a5b9dbf985c541946e363d0 | update the routing constructor in acp_challenge_routing.cc | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/acp_challenge_routing.cc",
"new_path": "examples/cpp/acp_challenge_routing.cc",
"diff": "@@ -264,9 +264,8 @@ void Solve(const std::string& filename, const std::string& solution_file) {\n}\n}\n- RoutingModel routing(num_active_periods + 1, 1);\ncon... | C++ | Apache License 2.0 | google/or-tools | update the routing constructor in acp_challenge_routing.cc |
261,230 | 27.02.2017 11:26:35 | -3,600 | 657835b7da61a8ce8abf58baaaead555ea94c0de | add -no-check-certificate | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win",
"new_path": "makefiles/Makefile.third_party.win",
"diff": "@@ -349,7 +349,7 @@ dependencies\\install\\swigwin-$(SWIG_TAG)\\swig.exe: dependencies\\archives\\swigwin\ntools\\touch.exe dependencies\\install\\swigwin-$(SWIG_TA... | C++ | Apache License 2.0 | google/or-tools | add -no-check-certificate |
261,230 | 07.03.2017 13:33:19 | -3,600 | cfcd919246a91e332b0ebc7acdf4cf50bc268d1a | revamp assemblyinfo in C# copying merge | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -26,6 +26,9 @@ endif\nCLR_DLL_NAME?=Google.OrTools\nBASE_CLR_DLL_NAME:= $(CLR_DLL_NAME)\n+COMMON_ASSEMBLY_INFO_CS_NAME := CommonAssemblyInfo.cs\n+ASSEMBLY_INFO_CS_NAME := As... | C++ | Apache License 2.0 | google/or-tools | revamp assemblyinfo in C# copying merge #333 |
261,230 | 07.03.2017 15:04:44 | -3,600 | 129cce9a930575546730c475b38d44bfd7d208b6 | add -source flag to nuget | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -409,7 +409,7 @@ ifeq (\"$(SYSTEM)\",\"win\")\n$(SED) -i -e \"s/VVVV/$(OR_TOOLS_VERSION)/\" temp\\or-tools\\or-tools.nuspec\n$(SED) -i -e \"s/PROTOBUF_TAG/$(PROTOBUF_TAG)/\"... | C++ | Apache License 2.0 | google/or-tools | add -source flag to nuget |
261,230 | 07.03.2017 15:08:06 | -3,600 | 3a54da2fd88139ffca5ee182664dde429ff9269b | fix package name in nuget push | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -409,7 +409,7 @@ ifeq (\"$(SYSTEM)\",\"win\")\n$(SED) -i -e \"s/VVVV/$(OR_TOOLS_VERSION)/\" temp\\or-tools\\or-tools.nuspec\n$(SED) -i -e \"s/PROTOBUF_TAG/$(PROTOBUF_TAG)/\"... | C++ | Apache License 2.0 | google/or-tools | fix package name in nuget push |
261,245 | 07.03.2017 11:25:32 | 18,000 | c6a750b0e08bb8232ad07ad52a9b36b74ce2bed2 | commit focused on renaming to diff tool friendly file names | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -42,11 +42,12 @@ OR_ROOT_FULL=$(OR_TOOLS_TOP)\n# Load local variables\ninclude $(OR_ROOT)Makefile.local\n+# Change the file extensions to increase diff tool friendliness.\n# Then include specific system commands a... | C++ | Apache License 2.0 | google/or-tools | commit focused on renaming to diff tool friendly file names |
261,245 | 07.03.2017 12:17:05 | 18,000 | 7add64ea41f39511c2ee561c0b34980027311783 | include system related mk file during third party targets
also critical ensure that tortoise svn processes have been killed prior to clean targets | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win.mk",
"new_path": "makefiles/Makefile.third_party.win.mk",
"diff": "@@ -17,6 +17,9 @@ SOPLEX_TAG = 2.2.0\n# Version of Sulum\nSULUM_TAG = 43\n+# Added in support of clean third party targets\n+TSVNCACHE_EXE = TSVNCache.exe\n+\... | C++ | Apache License 2.0 | google/or-tools | include system related mk file during third party targets
also critical ensure that tortoise svn processes have been killed prior to clean targets |
261,245 | 07.03.2017 12:57:22 | 18,000 | a5fb0eb14813a8ffaed66673c83de9d9af6f977d | added additional clean steps especially in the event that there are any problems or broken downloads | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win.mk",
"new_path": "makefiles/Makefile.third_party.win.mk",
"diff": "@@ -432,9 +432,15 @@ remove_readonly_svn_attribs: kill_tortoisesvn_cache\nif exist dependencies\\sources\\* $(ATTRIB) -r /s dependencies\\sources\\*\n-# Clean... | C++ | Apache License 2.0 | google/or-tools | added additional clean steps especially in the event that there are any problems or broken downloads |
261,245 | 11.03.2017 14:11:12 | 18,000 | a42eb1ea137f21dcb6d018aa8de39a49462d7cc6 | prepare for nuget packaging and distribution commits | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.win.mk",
"new_path": "makefiles/Makefile.win.mk",
"diff": "@@ -21,6 +21,10 @@ STATIC_PRE_LIB = $(OR_ROOT)lib\\\\\nSTATIC_POST_LIB = .lib\nO=obj\nE=.exe\n+L=.lib\n+DLL=.dll\n+PDB=.pdb\n+EXP=.exp\nOBJ_OUT = /Fo\nEXE_OUT = /Fe\nSWIG_LIB_SUFFIX ... | C++ | Apache License 2.0 | google/or-tools | prepare for nuget packaging and distribution commits |
261,245 | 11.03.2017 14:12:51 | 18,000 | 0cc3e0f7279fcc1ee12ef54f801001fb81902af8 | format nuspec in prettier manner
also prepare nuspec with better variable substitutions
make better use of variables in csharp make file
separate nuget target into more strategic steps of staging packaging and distribution
incorporated self documenting path oriented targets as well | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -23,8 +23,15 @@ endif\nendif\n# The generated DLL name. Defaults to Google.OrTools\n-CLR_DLL_NAME?=Google.OrTools\n-BASE_CLR_DLL_NAME:= $(CLR_DLL_NAME)\n+CLR_PROTOBUF_DLL_NA... | C++ | Apache License 2.0 | google/or-tools | format nuspec in prettier manner
also prepare nuspec with better variable substitutions
make better use of variables in csharp make file
separate nuget target into more strategic steps of staging packaging and distribution
incorporated self documenting path oriented targets as well |
261,269 | 16.03.2017 14:59:16 | -3,600 | a2cbd1b69128d127fa8c73475c87e1269b12f092 | Memory leak fix KnapsackSolver; for java proxy
Because the destructor is not disclosed the memory does not get freed. Added to configuration file and tested thoroughly. | [
{
"change_type": "MODIFY",
"old_path": "src/algorithms/java/knapsack_solver.swig",
"new_path": "src/algorithms/java/knapsack_solver.swig",
"diff": "%unignore operations_research;\n%unignore operations_research::KnapsackSolver;\n%unignore operations_research::KnapsackSolver::KnapsackSolver;\n+%unigno... | C++ | Apache License 2.0 | google/or-tools | Memory leak fix KnapsackSolver; for java proxy
Because the destructor is not disclosed the memory does not get freed. Added to configuration file and tested thoroughly. |
261,230 | 21.03.2017 09:36:32 | 14,400 | d92c3392a17c41a78340b98ab884d39d9686fae8 | add inline code to remove cyclic dependency | [
{
"change_type": "MODIFY",
"old_path": "src/base/bitmap.h",
"new_path": "src/base/bitmap.h",
"diff": "#include <string.h>\n#include \"base/basictypes.h\"\n-#include \"util/bitset.h\"\nnamespace operations_research {\n+namespace {\n+inline uint64 OneBit64(int pos) { return GG_ULONGLONG(1) << pos; }\n... | C++ | Apache License 2.0 | google/or-tools | add inline code to remove cyclic dependency |
261,230 | 21.03.2017 10:24:39 | 14,400 | 4fc56db0c49dcb7d69f864186ad1b634a51da96d | minimal bazel support | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/WORKSPACE",
"diff": "+git_repository(\n+ name = \"com_github_gflags_gflags\",\n+ commit = \"f8a0efe03aa69b3336d8e228b37d4ccb17324b88\",\n+ remote = \"https://github.com/gflags/gflags.git\",\n+)\n+\n+bind(\n+ name = \"gflags\",\n+ actual = \"... | C++ | Apache License 2.0 | google/or-tools | minimal bazel support |
261,230 | 21.03.2017 10:43:28 | 14,400 | 8f691674ae2cc6cca55ba886f1504ca3c0581ffd | first compiled example using bazel | [
{
"change_type": "MODIFY",
"old_path": ".gitignore",
"new_path": ".gitignore",
"diff": "@@ -28,3 +28,5 @@ examples/csharp/solution/*.csproj\nexamples/csharp/*.sln\nsrc/bazel-*\n+examples/bazel-*\n+\n"
},
{
"change_type": "ADD",
"old_path": null,
"new_path": "examples/WORKSPACE",
... | C++ | Apache License 2.0 | google/or-tools | first compiled example using bazel |
261,230 | 21.03.2017 12:41:31 | 14,400 | a6747be3bd69e0efc83e81a324bbfde269e649c3 | fix bitmap compilation | [
{
"change_type": "MODIFY",
"old_path": "src/base/bitmap.cc",
"new_path": "src/base/bitmap.cc",
"diff": "namespace operations_research {\nvoid Bitmap::Resize(uint32 size, bool fill) {\n- const uint32 new_array_size = BitLength64(size);\n+ const uint32 new_array_size = internal::BitLength64(size);\nco... | C++ | Apache License 2.0 | google/or-tools | fix bitmap compilation |
261,230 | 21.03.2017 12:48:40 | 14,400 | f09227dcfdf057a86d4a57ffab5cb90d30f34e6c | remove sparsehash from third_party, base, and constraint_solveri.h | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "GFLAGS_TAG = 2.1.2\nPROTOBUF_TAG = 3.0.0\n-SPARSEHASH_TAG = 2.0.3\nCBC_TAG = 2.9.8\nSWIG_TAG = 3.0.10\nPCRE_TAG = 8.37\n@@ -112,7 +111,6 @@ install_third_pa... | C++ | Apache License 2.0 | google/or-tools | remove sparsehash from third_party, base, and constraint_solveri.h |
261,230 | 21.03.2017 13:46:09 | 14,400 | 253f7955c6a1fd805408fba2e42ac6d45b312d15 | remove aliases in BUILD/WORKSPACE | [
{
"change_type": "MODIFY",
"old_path": "examples/WORKSPACE",
"new_path": "examples/WORKSPACE",
"diff": "@@ -9,16 +9,6 @@ git_repository(\nremote = \"https://github.com/gflags/gflags.git\",\n)\n-bind(\n- name = \"gflags\",\n- actual = \"@com_github_gflags_gflags//:gflags\",\n-)\n-\n-bind(\n- name = \... | C++ | Apache License 2.0 | google/or-tools | remove aliases in BUILD/WORKSPACE |
261,230 | 21.03.2017 15:11:22 | 14,400 | 705fc3256cf70a8ee8af84442aba9899cacb66eb | one linear solver example in bazel | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/BUILD",
"new_path": "examples/cpp/BUILD",
"diff": "@@ -36,3 +36,14 @@ cc_binary(\n\"@or_tools_libraries//sat:sat_solver\",\n],\n)\n+\n+cc_binary(\n+ name = \"linear_programming\",\n+ srcs = [\"linear_programming.cc\"],\n+ copts = [\"-DUSE_GLOP\"],... | C++ | Apache License 2.0 | google/or-tools | one linear solver example in bazel |
261,230 | 21.03.2017 16:29:05 | 14,400 | a6a6dc3cec2001ccd7a4df3d98f2ed5beb13627a | simplify/reindent workspaces | [
{
"change_type": "MODIFY",
"old_path": "examples/WORKSPACE",
"new_path": "examples/WORKSPACE",
"diff": "@@ -19,8 +19,9 @@ http_archive(\nsha256 = \"ff771a662fb6bd4d3cc209bcccedef3e93980a49f71df1e987f6afa3bcdcba3a\",\n)\n-# cc_proto_library rules implicitly depend on @com_google_protobuf_cc//:cc_tool... | C++ | Apache License 2.0 | google/or-tools | simplify/reindent workspaces |
261,230 | 22.03.2017 06:32:40 | 14,400 | 6654e16db47c8281bd4c70acee27170751502985 | remove constexpr for windows | [
{
"change_type": "MODIFY",
"old_path": "src/sat/BUILD",
"new_path": "src/sat/BUILD",
"diff": "@@ -476,46 +476,6 @@ cc_library(\n],\n)\n-#cc_binary(\n-# name = \"sat_runner\",\n-# srcs = [\n-# \"opb_reader.h\",\n-# \"sat_cnf_reader.h\",\n-# \"sat_runner.cc\",\n-# ],\n-# copts = [W_FLOAT_CONVERSION],\... | C++ | Apache License 2.0 | google/or-tools | remove constexpr for windows |
261,230 | 22.03.2017 06:33:02 | 14,400 | 6789c34fc1fcaa1bdea738f9e6f795968ebb15f2 | remove base/sparse_hash.h from dependencies | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.gen.mk",
"new_path": "makefiles/Makefile.gen.mk",
"diff": "@@ -2569,7 +2569,6 @@ $(SRC_DIR)/constraint_solver/constraint_solveri.h: \\\n$(SRC_DIR)/base/join.h \\\n$(SRC_DIR)/base/logging.h \\\n$(SRC_DIR)/base/map_util.h \\\n- $(SRC_DIR)/base... | C++ | Apache License 2.0 | google/or-tools | remove base/sparse_hash.h from dependencies |
261,230 | 22.03.2017 06:33:49 | 14,400 | 304e66ad5d9c668c2788346dedcf097bc4094f83 | add sat_runner binary to bazel | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/BUILD",
"new_path": "examples/cpp/BUILD",
"diff": "@@ -16,7 +16,6 @@ cc_library(\n],\n)\n-\ncc_binary(\nname = \"jobshop_sat\",\nsrcs = [\n@@ -47,3 +46,30 @@ cc_binary(\n\"@or_tools_libraries//linear_solver:linear_solver_cc_proto\",\n],\n)\n+\n+cc... | C++ | Apache License 2.0 | google/or-tools | add sat_runner binary to bazel |
261,232 | 22.03.2017 22:28:54 | -3,600 | 83106a9823b2e6f8c454b6c583b9e85005f646fa | Adding routing local search neighborhood operators to relocate and make active nodes at the same time. | [
{
"change_type": "MODIFY",
"old_path": "src/constraint_solver/constraint_solveri.h",
"new_path": "src/constraint_solver/constraint_solveri.h",
"diff": "@@ -1390,6 +1390,7 @@ class MakeChainInactiveOperator;\nclass SwapActiveOperator;\nclass ExtendedSwapActiveOperator;\nclass MakeActiveAndRelocate;\n... | C++ | Apache License 2.0 | google/or-tools | Adding routing local search neighborhood operators to relocate and make active nodes at the same time. |
261,273 | 22.03.2017 16:51:27 | 25,200 | a207964e976ea2e81ade411141fbe016a06e6e80 | Use std::isnan | [
{
"change_type": "MODIFY",
"old_path": "src/linear_solver/linear_solver.cc",
"new_path": "src/linear_solver/linear_solver.cc",
"diff": "@@ -990,7 +990,7 @@ bool MPSolver::VerifySolution(double tolerance, bool log_errors) const {\nconst MPVariable& var = *variables_[i];\nconst double value = var.solu... | C++ | Apache License 2.0 | google/or-tools | Use std::isnan |
261,232 | 24.03.2017 14:29:57 | -3,600 | d3a6ed9787c2664b81931550a9fff0577a463ab6 | Adding support for arrays of NodeEvaluator2s in Java and vehicle-dependent transits in the routing library. | [
{
"change_type": "MODIFY",
"old_path": "src/constraint_solver/java/constraint_solver.swig",
"new_path": "src/constraint_solver/java/constraint_solver.swig",
"diff": "@@ -568,57 +568,74 @@ class SolverToVoid {\n%rename (var) operations_research::IntVarLocalSearchFilter::Var; // Inherited.\nnamespace ... | C++ | Apache License 2.0 | google/or-tools | Adding support for arrays of NodeEvaluator2s in Java and vehicle-dependent transits in the routing library. |
261,230 | 24.03.2017 14:10:29 | 14,400 | 15bc5959cd7f42e5aff3f0309cd2cd2d5a7d5c18 | revamp CP export model, swig it in c# + simple test | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/model_util.cc",
"new_path": "examples/cpp/model_util.cc",
"diff": "@@ -318,7 +318,7 @@ int Run() {\nFLAGS_collect_variables) {\nSolver solver(model_proto.model());\nstd::vector<SearchMonitor*> monitors;\n- if (!solver.LoadModel(model_proto, &monit... | C++ | Apache License 2.0 | google/or-tools | revamp CP export model, swig it in c# + simple test |
261,256 | 25.03.2017 04:09:19 | 14,400 | 54c06796b3b2e64aee4c938d1beea1357abbc089 | Properly assigned IntVar rather than using constraints
The difference variables were input as constraints when they should
be added as a pure assignment. This change made the programs run
over 15 times faster. | [
{
"change_type": "MODIFY",
"old_path": "examples/python/least_diff.py",
"new_path": "examples/python/least_diff.py",
"diff": "@@ -63,16 +63,14 @@ def main(unused_argv):\nletters = [a, b, c, d, e, f, g, h, i, j]\n- x = solver.IntVar(list(range(0, 99999)), \"x\")\n- y = solver.IntVar(list(range(0, 999... | C++ | Apache License 2.0 | google/or-tools | Properly assigned IntVar rather than using constraints
The difference variables were input as constraints when they should
be added as a pure assignment. This change made the programs run
over 15 times faster. |
261,256 | 25.03.2017 04:14:34 | 14,400 | 18bac3b61574860512b706dfb259bf9ea9756761 | Removed redundant variables in DecisionBuilder
The variable vector added several deravitive variable that needlessly
increased the size of the search tree. The change cuts the search tree
size significantly. | [
{
"change_type": "MODIFY",
"old_path": "examples/python/least_diff.py",
"new_path": "examples/python/least_diff.py",
"diff": "@@ -91,7 +91,7 @@ def main(unused_argv):\nsearch_log = solver.SearchLog(100, diff)\n# Note: I'm not sure what CHOOSE_PATH do, but it is fast:\n# find the solution in just 4 s... | C++ | Apache License 2.0 | google/or-tools | Removed redundant variables in DecisionBuilder
The variable vector added several deravitive variable that needlessly
increased the size of the search tree. The change cuts the search tree
size significantly. |
261,232 | 28.03.2017 13:31:58 | -7,200 | 00cc896083052ed4232589ff8d34c25e1ddef118 | Fix pdptw parser | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/pdptw.cc",
"new_path": "examples/cpp/pdptw.cc",
"diff": "@@ -219,12 +219,12 @@ bool LoadAndSolve(const std::string& pdp_file) {\nconst int customer_id = parsed_int[0];\nconst int x = parsed_int[1];\nconst int y = parsed_int[2];\n- const int delive... | C++ | Apache License 2.0 | google/or-tools | Fix pdptw parser |
261,230 | 28.03.2017 16:08:08 | -7,200 | ce026b5c2d1343ae7e4f7b6c6e73f88387772f22 | refactor lp_data code | [
{
"change_type": "MODIFY",
"old_path": "src/lp_data/lp_data.cc",
"new_path": "src/lp_data/lp_data.cc",
"diff": "@@ -117,8 +117,7 @@ LinearProgram::LinearProgram()\nvariable_lower_bounds_(),\nvariable_upper_bounds_(),\nvariable_names_(),\n- is_variable_integer_(),\n- is_variable_implied_integer_(),\n... | C++ | Apache License 2.0 | google/or-tools | refactor lp_data code |
261,230 | 28.03.2017 16:09:36 | -7,200 | a7039abdab5b7386b30f83b08b6f57274568555c | add overloaded operators in linear_solver C++ api; extend 'natural' api in python | [
{
"change_type": "MODIFY",
"old_path": "src/linear_solver/bop_interface.cc",
"new_path": "src/linear_solver/bop_interface.cc",
"diff": "@@ -307,7 +307,10 @@ void BopInterface::ExtractNewVariables() {\nDCHECK_EQ(new_col, col);\nset_variable_as_extracted(col.value(), true);\nlinear_program_.SetVariabl... | C++ | Apache License 2.0 | google/or-tools | add overloaded operators in linear_solver C++ api; extend 'natural' api in python |
261,230 | 28.03.2017 16:11:47 | -7,200 | aecbe1d99c49b007569fabab19c7519591ff0b66 | fix overflow in flatzinc | [
{
"change_type": "MODIFY",
"old_path": "src/flatzinc/parser.yy",
"new_path": "src/flatzinc/parser.yy",
"diff": "%code requires {\n#if !defined(OR_TOOLS_FLATZINC_FLATZINC_TAB_HH_)\n#define OR_TOOLS_FLATZINC_FLATZINC_TAB_HH_\n+#include \"base/strutil.h\"\n+#include \"base/stringpiece_utils.h\"\n#inclu... | C++ | Apache License 2.0 | google/or-tools | fix overflow in flatzinc |
261,230 | 28.03.2017 16:12:55 | -7,200 | 288be16e0a3479a7ad6f495274a9506b414cd9e8 | small fixes; remove obsolete code | [
{
"change_type": "MODIFY",
"old_path": "src/bop/integral_solver.cc",
"new_path": "src/bop/integral_solver.cc",
"diff": "@@ -500,7 +500,7 @@ int64 IntegralProblemConverter::GetSolutionValue(\nbool IntegralProblemConverter::CheckProblem(\nconst LinearProgram& linear_problem) const {\nfor (ColIndex col... | C++ | Apache License 2.0 | google/or-tools | small fixes; remove obsolete code |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.